<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Cool stuff in FubuCore No. 3: Static Reflection</title>
	<atom:link href="http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/</link>
	<description>Software development, testing, and techie life</description>
	<lastBuildDate>Thu, 08 Mar 2012 22:19:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Chad Myers</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1301</link>
		<dc:creator>Chad Myers</dc:creator>
		<pubDate>Mon, 06 Jun 2011 22:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1301</guid>
		<description>@kevdog:  Ah, I see.  No, that&#039;s the opposite of what Static Reflection does. What you&#039;re wanting is what traditional string-based reflection does.  I&#039;d just do a standard yourType.GetProperties().Where(p =&gt; p.Name.ToLower().Contains(&quot;qualifiers&quot;)).Each(p =&gt; p.SetValue(...));</description>
		<content:encoded><![CDATA[<p>@kevdog:  Ah, I see.  No, that&#8217;s the opposite of what Static Reflection does. What you&#8217;re wanting is what traditional string-based reflection does.  I&#8217;d just do a standard yourType.GetProperties().Where(p =&gt; p.Name.ToLower().Contains(&#8220;qualifiers&#8221;)).Each(p =&gt; p.SetValue(&#8230;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1300</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 06 Jun 2011 21:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1300</guid>
		<description>I need to set every property that has &quot;qualifiers&quot; in its name to the same value. There are some edge cases, but that&#039;s the base case. </description>
		<content:encoded><![CDATA[<p>I need to set every property that has &#8220;qualifiers&#8221; in its name to the same value. There are some edge cases, but that&#8217;s the base case. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1299</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Mon, 06 Jun 2011 21:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1299</guid>
		<description>Nice! Thanks</description>
		<content:encoded><![CDATA[<p>Nice! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Myers</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1298</link>
		<dc:creator>Chad Myers</dc:creator>
		<pubDate>Mon, 06 Jun 2011 20:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1298</guid>
		<description>@kevdog I&#039;m not sure what you mean by &quot;with the substring &#039;qualifiers&#039;&quot;. Could you please clarify that statement so I understand precisely what you mean (and therefore give you a better answer)?</description>
		<content:encoded><![CDATA[<p>@kevdog I&#8217;m not sure what you mean by &#8220;with the substring &#8216;qualifiers&#8217;&#8221;. Could you please clarify that statement so I understand precisely what you mean (and therefore give you a better answer)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1296</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 06 Jun 2011 20:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1296</guid>
		<description>I think this library could solve a problem I&#039;m having, but I&#039;m still digging through things.

A particular class has several string properties with the substring &quot;qualifiers&quot;, is it possible to leverage this library to append a char to those fields? 

Thanks for the excellent work on this series, it is much appreciated.</description>
		<content:encoded><![CDATA[<p>I think this library could solve a problem I&#8217;m having, but I&#8217;m still digging through things.</p>
<p>A particular class has several string properties with the substring &#8220;qualifiers&#8221;, is it possible to leverage this library to append a char to those fields? </p>
<p>Thanks for the excellent work on this series, it is much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Myers</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1291</link>
		<dc:creator>Chad Myers</dc:creator>
		<pubDate>Sat, 04 Jun 2011 20:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1291</guid>
		<description>Ah,yes. That&#039;s exactly what we do with StoryTeller in our project at Dovetail.  Our StoryTeller fixtures know about our Html conventions and knows how ID&#039;s are generated and can use those conventions. It makes it much less brittle.</description>
		<content:encoded><![CDATA[<p>Ah,yes. That&#8217;s exactly what we do with StoryTeller in our project at Dovetail.  Our StoryTeller fixtures know about our Html conventions and knows how ID&#8217;s are generated and can use those conventions. It makes it much less brittle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1290</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 04 Jun 2011 20:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1290</guid>
		<description>Ok, sorry about that, let me try be more coherent:
So suppose you use selenium to test your application. One of the pains in writing a maintainable test is having to worry about the component/s under test- that is their xpath/id/className/css selector... I was sort of thinking out loud whether we could use static reflection, and maybe even use the same conventions that we use when creating the html (with TextBoxFor) inside our acceptance tests to get to these text boxes, labels, drop downs etc&#039;...</description>
		<content:encoded><![CDATA[<p>Ok, sorry about that, let me try be more coherent:<br />
So suppose you use selenium to test your application. One of the pains in writing a maintainable test is having to worry about the component/s under test- that is their xpath/id/className/css selector&#8230; I was sort of thinking out loud whether we could use static reflection, and maybe even use the same conventions that we use when creating the html (with TextBoxFor) inside our acceptance tests to get to these text boxes, labels, drop downs etc&#8217;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Myers</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1288</link>
		<dc:creator>Chad Myers</dc:creator>
		<pubDate>Sat, 04 Jun 2011 13:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1288</guid>
		<description>Not sure I follow</description>
		<content:encoded><![CDATA[<p>Not sure I follow</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad Myers</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1287</link>
		<dc:creator>Chad Myers</dc:creator>
		<pubDate>Sat, 04 Jun 2011 13:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1287</guid>
		<description>Yep. I&#039;ve got about 10 posts total planned for the &quot;FubuCore&quot; series and about 12 for the &quot;FubuMVC&quot; series</description>
		<content:encoded><![CDATA[<p>Yep. I&#8217;ve got about 10 posts total planned for the &#8220;FubuCore&#8221; series and about 12 for the &#8220;FubuMVC&#8221; series</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nieve</title>
		<link>http://lostechies.com/chadmyers/2011/06/01/cool-stuff-in-fubucore-no-3-static-reflection/#comment-1286</link>
		<dc:creator>nieve</dc:creator>
		<pubDate>Sat, 04 Jun 2011 09:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/chadmyers/?p=192#comment-1286</guid>
		<description>Hey Chad,
Can this code (html conventions &amp; tags) be then afterwards reused in your acceptance tests to get less brittle and more resharper-navigable/renameable tests?</description>
		<content:encoded><![CDATA[<p>Hey Chad,<br />
Can this code (html conventions &amp; tags) be then afterwards reused in your acceptance tests to get less brittle and more resharper-navigable/renameable tests?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
