<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Object Mentor Blog: Testing GUIs Part I: RoR.</title>
    <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Testing GUIs Part I: RoR.</title>
      <description>&lt;p&gt;Testing GUIs is one of the the holy grails of Test Driven Develoment (TDD).  Many teams who have adopted &lt;span class="caps"&gt;TDD&lt;/span&gt; for other parts of their projects have, for one reason or another, been unable to adequately test the &lt;span class="caps"&gt;GUI&lt;/span&gt; portion of their code.&lt;/p&gt;


	&lt;p&gt;In this series of article I will show that &lt;span class="caps"&gt;GUI&lt;/span&gt; testing is a solved problem.  Over the years the &lt;span class="caps"&gt;TDD&lt;/span&gt; community has produced and accumulated tools, frameworks, libraries, and techniques that allow any team to test their &lt;span class="caps"&gt;GUI&lt;/span&gt; code as fully as any other part of their code.&lt;/p&gt;


	&lt;h1&gt;Testing GUIs Part I: &lt;span style="color:red;"&gt;Ruby on Rails&lt;/span&gt;&lt;/h1&gt;


	&lt;p&gt;In the world of web development, no community has solved the problem of &lt;span class="caps"&gt;GUI&lt;/span&gt; testing better than the Ruby on Rails community.  When you work on a rails project, testing the &lt;span class="caps"&gt;GUI&lt;/span&gt; is simply &lt;em&gt;de-rigeur&lt;/em&gt;.  The rails framework provides all the necessary tools and access points for testing all aspects of the application, including the generation of &lt;span class="caps"&gt;HTML&lt;/span&gt; and the structure of the resulting web pages.&lt;/p&gt;


	&lt;p&gt;Web pages in rails are specified by &lt;code&gt;.rhtml&lt;/code&gt; files that contain a mixture of &lt;span class="caps"&gt;HTML&lt;/span&gt; and ruby code similar to the way Java and &lt;span class="caps"&gt;HTML&lt;/span&gt; are mixed in &lt;code&gt;.jsp&lt;/code&gt; files.  The difference is that &lt;code&gt;.rhtml&lt;/code&gt; files are translated at runtime rather than being compiled into servlets the way &lt;code&gt;.jsp&lt;/code&gt; pages are.  This makes it very easy for the rails environment to generate the &lt;span class="caps"&gt;HTML&lt;/span&gt; for a web page &lt;em&gt;outside&lt;/em&gt; of the web container.  Indeed, the web server does not need to be running.&lt;/p&gt;


	&lt;p&gt;This ease and portability of generating &lt;span class="caps"&gt;HTML&lt;/span&gt; means that the rails test framework merely needs to set up the variables needed by the ruby scriptlets within the &lt;code&gt;.rhtml&lt;/code&gt; files, generate the &lt;span class="caps"&gt;HTML&lt;/span&gt;, and then parse that &lt;span class="caps"&gt;HTML&lt;/span&gt; into a form that the tests can query.&lt;/p&gt;


	&lt;h3&gt;A typical example.&lt;/h3&gt;


The tests query the &lt;span class="caps"&gt;HTML&lt;/span&gt; using an xpath-like syntax coupled with a suite of very powerful assertion functions.  The best way to understand this is to see it.  So here is a simple file named: &lt;code&gt;autocomplete_teacher.rhtml&lt;/code&gt;.  
&lt;pre&gt;&lt;code&gt;&amp;lt;ul class="autocomplete_list"&amp;gt; 
&amp;lt;% @autocompleted_teachers.each do |t| %&amp;gt; 
&amp;lt;li class="autocomplete_item"&amp;gt;&amp;lt;%= "#{create_name_adornment(t)} #{t.last_name}, #{t.first_name}"%&amp;gt;&amp;lt;/li&amp;gt; 
&amp;lt;% end %&amp;gt; 
&amp;lt;/ul&amp;gt; 
&lt;/code&gt;&lt;/pre&gt;
You don&amp;#8217;t have to be a ruby programmer to understand this.  All it is doing is building an &lt;span class="caps"&gt;HTML&lt;/span&gt; list.  The Ruby scriptlet between &lt;code&gt;&amp;lt;% and %&amp;gt;&lt;/code&gt; tokens simple loops for each teacher creating an &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tag from an &amp;#8220;adornment&amp;#8221;, and the first and last name.  (The adornment happens to be the database id of the teacher in parentheses.)

A simple test for this &lt;code&gt;.rhtml&lt;/code&gt; file is:
&lt;pre&gt;&lt;code&gt;  def test_autocomplete_teacher_finds_one_in_first_name
    post :autocomplete_teacher, :request=&amp;gt;{:teacher=&amp;gt;"B"}
    assert_template "autocomplete_teacher" 
    assert_response :success
    assert_select "ul.autocomplete_list" do
      assert_select "li.autocomplete_item", :count =&amp;gt; 1
      assert_select "li", "(1) Martin, Bob" 
    end
  end&lt;/code&gt;&lt;/pre&gt;

	&lt;ul&gt;
	&lt;li&gt;The &lt;code&gt;post&lt;/code&gt; statement simply invokes the controller that would normally be invoked by a &lt;span class="caps"&gt;POST&lt;/span&gt; url of the form: &lt;code&gt;POST /teachers/autocomplete_teacher&lt;/code&gt; with the &lt;code&gt;teacher&lt;/code&gt; parameter set to &lt;code&gt;"B"&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;The first assertion makes sure that the controller rendered the &lt;code&gt;autocomplete_teacher.rhtml&lt;/code&gt; template.&lt;/li&gt;
		&lt;li&gt;The next makes sure that the controller returned success.&lt;/li&gt;
		&lt;li&gt;the third is a compound assertion that starts by finding the &lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; tag with a &lt;code&gt;class="autocomplete_list"&lt;/code&gt; attribute.  (Notice the use of &lt;code&gt;css&lt;/code&gt; syntax.)
	&lt;ul&gt;
	&lt;li&gt;Within this tag there should be an &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tag with a &lt;code&gt;class="autocomplete_item"&lt;/code&gt; attribute, &lt;/li&gt;
		&lt;li&gt;and containing the text &lt;code&gt;(1) Martin, Bob&lt;/code&gt;.&lt;/li&gt;
	&lt;/ul&gt;&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;&lt;br&gt;
It should not come as any surprise that this test runs in a test environment in which the database has been pre-loaded with very specific data.  For example, this test database always has &amp;#8220;Bob Martin&amp;#8221; being the first row (&lt;code&gt;id=1&lt;/code&gt;) in the &lt;code&gt;Teacher&lt;/code&gt; table.&lt;/p&gt;


	&lt;p&gt;The &lt;code&gt;assert_select&lt;/code&gt; function is &lt;em&gt;very&lt;/em&gt; powerful, and allows you to query large and complex &lt;span class="caps"&gt;HTML&lt;/span&gt; documents with surgical precision.  Although this example give you just a glimpse of that power, you should be able to see that the rails testing scheme allows you to test that all the scriptlets in an &lt;code&gt;.rhtml&lt;/code&gt; file are behaving correctly, and are correctly extracting data from the variables set by the controller.&lt;/p&gt;


	&lt;h3&gt;An example using &lt;em&gt;RSpec&lt;/em&gt; and &lt;em&gt;Behavior Driven Design&lt;/em&gt;.&lt;/h3&gt;


	&lt;p&gt;What follows is a more significant rails example that uses an alternate testing syntax known as Behavior Driven Design (BDD).  The tool that accepts this syntax is called &lt;em&gt;RSpec&lt;/em&gt;.&lt;/p&gt;


Imagine that we have a page that records telephone messages taken from teachers at different schools.  Part of that page might have an .rhtml syntax that looks like this:
&lt;pre&gt;&lt;code&gt;&amp;lt;h1&amp;gt;Message List&amp;lt;/h1&amp;gt;

&amp;lt;table id="list"&amp;gt;
  &amp;lt;tr class="list_header_row"&amp;gt;
    &amp;lt;th class="list_header"&amp;gt;Time&amp;lt;/th&amp;gt;
    &amp;lt;th class="list_header"&amp;gt;Caller&amp;lt;/th&amp;gt;
    &amp;lt;th class="list_header"&amp;gt;School&amp;lt;/th&amp;gt;
    &amp;lt;th class="list_header"&amp;gt;IEP&amp;lt;/th&amp;gt;
  &amp;lt;/tr&amp;gt;
&amp;lt;%time_chooser = TimeChooser.new%&amp;gt; 
&amp;lt;% for message in @messages %&amp;gt;
  &amp;lt;%cell_class = cycle("list_content_even", "list_content_odd")%&amp;gt;
  &amp;lt;tr id="list_content_row"&amp;gt;
    &amp;lt;td id="time"   class="&amp;lt;%=cell_class%&amp;gt;"&amp;gt;&amp;lt;%=h(time_chooser.format_time(message.time)) %&amp;gt;&amp;lt;/td&amp;gt;
    &amp;lt;td id="caller" class="&amp;lt;%=cell_class%&amp;gt;"&amp;gt;&amp;lt;%=h person_name(message.caller) %&amp;gt;&amp;lt;/td&amp;gt;
    &amp;lt;td id="school" class="&amp;lt;%=cell_class%&amp;gt;"&amp;gt;&amp;lt;%=h message.school.name %&amp;gt;&amp;lt;/td&amp;gt;
    &amp;lt;td id="iep"    class="&amp;lt;%=cell_class%&amp;gt;"&amp;gt;&amp;lt;%=h (message.iep ? "X" : "") %&amp;gt;&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
&amp;lt;% end %&amp;gt;
&amp;lt;/table&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
Clearly each message has a time, caller, school, and some kind of boolean field named &amp;#8220;IEP&amp;#8221;.  

We can test this &lt;code&gt;.rhtml&lt;/code&gt; file with the following &lt;em&gt;RSpec&lt;/em&gt; specification:
&lt;pre&gt;&lt;code&gt;context "Given a request to render message/list with one message the page" do
  setup do
    m = mock "message" 
    caller = mock "person",:null_object=&amp;gt;true
    school = mock "school" 

    m.should_receive(:school).and_return(school)
    m.should_receive(:time).and_return(Time.parse("1/1/06"))
    m.should_receive(:caller).any_number_of_times.and_return(caller)
    m.should_receive(:iep).and_return(true)

    caller.should_receive(:first_name).and_return("Bob")
    caller.should_receive(:last_name).and_return("Martin")

    school.should_receive(:name).and_return("Jefferson")
    assigns[:messages]=[m]

    assigns[:message_pages] = mock "message_pages", :null_object=&amp;gt;true
    render 'message/list'
  end

  specify "should show the time" do
    response.should_have_tag :td, :content=&amp;gt;"12:00 AM 1/1", :attributes=&amp;gt;{:id=&amp;gt;"time"}
  end

  specify "should show caller first and last name" do
    response.should_have_tag :td, :content=&amp;gt;"Bob Martin", :attributes=&amp;gt;{:id=&amp;gt;"caller"}
  end

  specify "should show school name" do
    response.should_have_tag :td, :content=&amp;gt;"Jefferson", :attributes=&amp;gt;{:id=&amp;gt;"school"}
  end

  specify "should show the IEP field" do
    response.should_have_tag :td, :content=&amp;gt;"X",:attributes=&amp;gt;{:id=&amp;gt;"iep"}
  end
end
&lt;/code&gt;&lt;/pre&gt;
I&amp;#8217;m not going to explain the &lt;code&gt;setup&lt;/code&gt; function containing all that &lt;em&gt;mock&lt;/em&gt; stuff you see at the start.  Let me just say that the mocking facilities of &lt;em&gt;RSpec&lt;/em&gt; are both powerful and convenient.  Actually you shouldn&amp;#8217;t have too much trouble understanding the &lt;code&gt;setup&lt;/code&gt; if you try; but understanding it is not essential for this example.  The interesting testing is in the &lt;code&gt;specify&lt;/code&gt; blocks.

	&lt;p&gt;You shouldn&amp;#8217;t have too much trouble reading the &lt;code&gt;specify&lt;/code&gt; blocks.  You can understand all of them if you understand the first.  Here is what it does:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;The first spec ensures that &lt;code&gt;&amp;lt;td id="time"&amp;gt;12:00 AM 1/1&amp;lt;/td&amp;gt;&lt;/code&gt; exists in the &lt;span class="caps"&gt;HTML&lt;/span&gt; document.  This is not a string compare.  Rather it is a semantic equivalence.  Whitespace, and other attributes and complications are ignored.  This spec will pass as long as there is a &lt;code&gt;td&lt;/code&gt; tag with the appropriate id and contents.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;h3&gt;&lt;span class="caps"&gt;HTML&lt;/span&gt; Testing Discipline and Strategy&lt;/h3&gt;


	&lt;p&gt;One of the reasons that &lt;span class="caps"&gt;GUI&lt;/span&gt; testing has been so problematic in the &lt;code&gt;.jsp&lt;/code&gt; world is that the java scriptlets in those files often reach out into the overall application domain and touch code that ties them to the web container and the application server.  For example, if you make a call from a &lt;code&gt;.jsp&lt;/code&gt; page to a database gateway, or an entity bean, or some other structure that is tied to the database; then in order to test the &lt;code&gt;.jsp&lt;/code&gt; you have to have the full enabling context running.  Rails gets away with this because the enabling context is lightweight, portable, and disconnected from the web container, and the live database.  Even so, rails applications are not always as decoupled as they should be.&lt;/p&gt;


	&lt;p&gt;In Rails, Java, or any other web context, the discipline should be to make sure that none of the scriptlets in the &lt;code&gt;.jsp&lt;/code&gt;, &lt;code&gt;.rhtml&lt;/code&gt;, etc. files know anything at all about the rest of the application.  Rather, the controller code should load up data into simple objects and pass them to the scriptlets (typically in the &lt;code&gt;attributes&lt;/code&gt; field of the &lt;code&gt;HttpServletRequest&lt;/code&gt; object or its equivalent).  The scriptlets can fiddle with the format of this data (e.g. data formats, money formats, etc.) but &lt;em&gt;should not do any calculation, querying, or other business rule or database processing.&lt;/em&gt;  Nor should the scriptlets navigate through the model objects or entities.  Rather the controller should do all the navigating, gathering, and calculating and present the data to the scriptlets in a nice little package.&lt;/p&gt;


	&lt;p&gt;If you follow this simple design discipline, then your web pages can be generated completely outside of the web environment, and your tests can parse and inspect the html in a simple and friendly environment.&lt;/p&gt;


	&lt;h3&gt;Conclusion&lt;/h3&gt;


	&lt;p&gt;I&amp;#8217;ll have more to say about &lt;em&gt;RSpec&lt;/em&gt; in a future blog.  &lt;span class="caps"&gt;BDD&lt;/span&gt; is an exciting twist on the syntax of testing, that has an effect far greater than the simple syntax shift would imply.&lt;/p&gt;


	&lt;p&gt;I hope this article has convinced you that the rails community has solved the problem of testing &lt;span class="caps"&gt;HTML&lt;/span&gt; generation.  This solution can be easily extrapolated back to Java and .NET as future blogs in this series will show.&lt;/p&gt;


	&lt;p&gt;Clearly the problem of testing Javascript, and the ever more complex issues of Web2.0 and &lt;span class="caps"&gt;GTK&lt;/span&gt; are not addressed by this scheme.  However, there are solutions for Javascript that we will investigate in future blogs in this series.&lt;/p&gt;


	&lt;p&gt;Finally, this technique does not test the integration and workflow of a whole application.  Again, those are topics for later blogs.&lt;/p&gt;


	&lt;p&gt;I hope this kickoff blog has been informative.  If you have a comment, question, or even a rant, please don&amp;#8217;t hesitate to add a comment to this blog.&lt;/p&gt;</description>
      <pubDate>Sat, 13 Jan 2007 17:24:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:6fcd0b8d-2d9f-4d06-b44d-926bb905a097</guid>
      <author>Uncle Bob</author>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror</link>
      <category>Uncle Bob's Blatherings</category>
      <category>Testing GUIs</category>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by prudhvi@30gigs.com</title>
      <description>&lt;p&gt;Hi&lt;/p&gt;


	&lt;p&gt;I am a newbie to Ruby.
I am interested in testing the url&amp;#8217;s placed in a web-page to find the &amp;#8216;Page not Found&amp;#8217; error in specific and other link issues like passing the required params in generic using Ruby.&lt;/p&gt;


	&lt;p&gt;Could you pl guide me on the aforementioned. Maybe through some pdf and examples.&lt;/p&gt;


	&lt;p&gt;Regards,
Prudhvi&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jul 2007 02:31:52 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:7318a56b-72da-48d8-8965-6e76fdcedc9f</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-518</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by Aaron</title>
      <description>&lt;p&gt;It is informative, and it is the most effective way I can find as well.
Actually I am just finding a solution to develop a better java testing tool to help my team to test faster, easier and in better efficiency. The best idea seems to use annotations and xml configurations to decorate test cases. A typical framework of this kind is TestNG. It seems the advantages of this kind of testing framework is:&lt;/p&gt;


	&lt;p&gt;1&amp;gt; Stronger control in the workflow of test cases running. You can either use specific annotation syntax to put them into groups, or identify some executing sequences.
2&amp;gt; More flexible. Testing classes don&amp;#8217;t have to extend some base classes as JUnit, or have some rules to restrict method defining.
3&amp;gt; Accelerate procedure of developing test cases in some specific situations.&lt;/p&gt;


	&lt;p&gt;Aha, this is not bad comparing with JUnit. But if it comes to rails,  annotation kind of things would not be that competent. Because using syntax way to test, it must be much more flexible &amp;#38; powerful.&lt;/p&gt;</description>
      <pubDate>Wed, 31 Jan 2007 02:36:15 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:a9b929da-bcde-498a-bc91-3207fcd84bb7</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-58</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by Andy Dent</title>
      <description>&lt;p&gt;&lt;em&gt;GUI testing is a solved problem&lt;/em&gt;&lt;/p&gt;


Uhh, do you just mean &lt;em&gt;HTML Forms Web App GUI testing is a solved problem&lt;/em&gt; or is your series going to include
	&lt;ol&gt;
	&lt;li&gt;rich internet apps using Flash&lt;/li&gt;
		&lt;li&gt;desktop apps&lt;/li&gt;
		&lt;li&gt;mobile apps?&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;I&amp;#8217;m really hoping for a good answer on desktop apps because, surprisingly, there&amp;#8217;s still a lot of work happening developing them, both for retail and inhouse. We could really use a good solution for wxPython-based GUIs!&lt;/p&gt;</description>
      <pubDate>Wed, 24 Jan 2007 03:18:16 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:8e8acdb1-f9da-4ac4-84b3-41866b135994</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-46</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by David Chelimsky</title>
      <description>&lt;p&gt;Anthony &amp;#8211; yes, RSpec on Rails already unofficially supports assert_select for tags (not yet for rjs). If you are using the 0.7.5 plugin, take a look at spec/expecations/should_have_spec.rb to see what you can do. We used should_have because should_select doesn&amp;#8217;t talk about the behaviour of the system under test. It sounds more like the behaviour of rspec, which &amp;#8220;should_select&amp;#8221; or &amp;#8220;should_find&amp;#8221; an element. What we&amp;#8217;re saying is that the response should have some material in it, so &amp;#8220;should_have&amp;#8221; makes sense to me.&lt;/p&gt;


	&lt;p&gt;At this point there are several things holding me back from making it officially supported. For one, the syntax is likely to change subtly. We also need to support rjs. And the error messages are completely useless. Right now we&amp;#8217;re just wrapping assert_select, and its error messages just say &amp;#8220;expected 1 element(s), found 0&amp;#8221;. That is not all that helpful to me.&lt;/p&gt;


	&lt;p&gt;Once these are resolved, we&amp;#8217;ll make it official. In the mean time you are free to use what&amp;#8217;s there &amp;#8211; just be aware that there will be some API changes and you&amp;#8217;ll have to change your specs for a future release.&lt;/p&gt;</description>
      <pubDate>Sun, 14 Jan 2007 08:49:38 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:7f78a6c4-f9f2-4d49-bea0-d18880a18a35</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-33</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by Uncle Bob</title>
      <description>&lt;p&gt;Anthony,&lt;/p&gt;


	&lt;p&gt;Yes, I plan on discussing the testing of thick client GUIs, and GUIs with lots of JavaScript.&lt;/p&gt;</description>
      <pubDate>Sun, 14 Jan 2007 08:13:10 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:fde6eac4-42fa-4488-925f-6544b549fd69</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-31</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by Anthony Bailey</title>
      <description>&lt;p&gt;Thanks for the article,&lt;/p&gt;


	&lt;p&gt;(I assume RSpec plans to support some kind of &lt;code&gt;should_css_select&lt;/code&gt; equivalent to the elegant &lt;code&gt;assert_select&lt;/code&gt; sometime soon. It&amp;#8217;s already distressing to go back to the noisier &lt;code&gt;tag&lt;/code&gt; style assertions.)&lt;/p&gt;


	&lt;p&gt;Will you be discussing the testing of direct manipulation (e.g. mouse-driven inputs, highly graphical output) user interfaces at all? I have found those to be the ones where automated testing is the most difficult, although not impossible with the right kind of intermediate representations in place.&lt;/p&gt;</description>
      <pubDate>Sun, 14 Jan 2007 02:09:05 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:88c37573-2455-454c-b493-ec6997c9334c</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-30</link>
    </item>
    <item>
      <title>"Testing GUIs Part I: RoR." by David Chelimsky</title>
      <description>&lt;p&gt;Very happy to see that you&amp;#8217;re enjoying using RSpec.&lt;/p&gt;


	&lt;p&gt;There are some things that I&amp;#8217;ve started to approach differently. I posted on this &lt;a href="http://blog.objectmentor.com/articles/2007/01/13/separating-setup-from-specify" rel="nofollow"&gt;next door&lt;/a&gt; and would love to get your feedback.&lt;/p&gt;</description>
      <pubDate>Sun, 14 Jan 2007 00:04:28 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4624522f-1c77-4db8-a34d-180f1c68c3df</guid>
      <link>http://blog.objectmentor.com/articles/2007/01/13/testing-guis-part-i-ror#comment-29</link>
    </item>
  </channel>
</rss>
