<?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: Ask!</title>
	<atom:link href="http://misko.hevery.com/your-suggestions/feed/" rel="self" type="application/rss+xml" />
	<link>http://misko.hevery.com</link>
	<description>Testability Explorer</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:59:03 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: misko</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3729</link>
		<dc:creator>misko</dc:creator>
		<pubDate>Mon, 12 Jul 2010 17:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3729</guid>
		<description>@Roger, 
Absolutely!</description>
		<content:encoded><![CDATA[<p>@Roger,<br />
Absolutely!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3728</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Mon, 12 Jul 2010 10:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3728</guid>
		<description>Misko, You rock.
I am trying to push better testing habits on my team and your explanations have really helped.

I know this isn&#039;t technically a question, but it had to be said.

It can be very difficult converting a team that is stuck in its ways. Is it OK if I quote some of your posts/comments verbatim? I can&#039;t think of a better way of saying what you say.</description>
		<content:encoded><![CDATA[<p>Misko, You rock.<br />
I am trying to push better testing habits on my team and your explanations have really helped.</p>
<p>I know this isn&#8217;t technically a question, but it had to be said.</p>
<p>It can be very difficult converting a team that is stuck in its ways. Is it OK if I quote some of your posts/comments verbatim? I can&#8217;t think of a better way of saying what you say.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misko</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3716</link>
		<dc:creator>misko</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3716</guid>
		<description>@Medinol,

If you need only one of something than you simply instantiate a single copy of some root factory which keeps track to make sure that you have a single copy. If you instantiate the factory again, than you will have a new copy, but in my opinion that is a good thing. Why would you ever want to prevent the user from having two instances? Say you have an application and you need a central locking object which needs to be a singleton. In production you need one copy, but during testing you want a new copy per test to make sure that test do not share state through the singleton. In my opinion it is better to tell the user that only one instance should be made, and thus allow him to break the rule in testing (or maybe the user wants to run two instances in of the app in a single JVM in which case he really needs two instances.) 

When something is a singleton it is a singleton with respect to something. Usually the JVM. There is no way from preventing someone running multiple copy of the app. What you want is a singleton with respect to your application not with respect to JVM as single JVM may run multiple applications.</description>
		<content:encoded><![CDATA[<p>@Medinol,</p>
<p>If you need only one of something than you simply instantiate a single copy of some root factory which keeps track to make sure that you have a single copy. If you instantiate the factory again, than you will have a new copy, but in my opinion that is a good thing. Why would you ever want to prevent the user from having two instances? Say you have an application and you need a central locking object which needs to be a singleton. In production you need one copy, but during testing you want a new copy per test to make sure that test do not share state through the singleton. In my opinion it is better to tell the user that only one instance should be made, and thus allow him to break the rule in testing (or maybe the user wants to run two instances in of the app in a single JVM in which case he really needs two instances.) </p>
<p>When something is a singleton it is a singleton with respect to something. Usually the JVM. There is no way from preventing someone running multiple copy of the app. What you want is a singleton with respect to your application not with respect to JVM as single JVM may run multiple applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Medinol</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3714</link>
		<dc:creator>Medinol</dc:creator>
		<pubDate>Thu, 08 Jul 2010 13:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3714</guid>
		<description>Hi misko,

I have a question regarding your well written articles about the singleton pattern.

I think you make wonderful argues on why not to use this pattern at least not intesively.

Saying that, how can i make sure there is really only a single instance, i.e. how can i enforce that there would be only one instance of that type of class, there is nothing that prevents the user of my libraries from creating more ...

thanks,
adiel.</description>
		<content:encoded><![CDATA[<p>Hi misko,</p>
<p>I have a question regarding your well written articles about the singleton pattern.</p>
<p>I think you make wonderful argues on why not to use this pattern at least not intesively.</p>
<p>Saying that, how can i make sure there is really only a single instance, i.e. how can i enforce that there would be only one instance of that type of class, there is nothing that prevents the user of my libraries from creating more &#8230;</p>
<p>thanks,<br />
adiel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amischol</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3678</link>
		<dc:creator>Amischol</dc:creator>
		<pubDate>Thu, 01 Jul 2010 20:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3678</guid>
		<description>Hi, Misko.

This mail returns me this error.

&quot;We&#039;re writing to let you know that the group you tried to contact (js-test-driver) may not exist, or you may not have permission to post messages to the group. A few more details on why you weren&#039;t able to post:

 * You might have spelled or formatted the group name incorrectly.
 * The owner of the group may have removed this group.
 * You may need to join the group before receiving permission to post.
 * This group may not be open to posting.
&quot;

Do you know where I can contact with someone that could help me?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, Misko.</p>
<p>This mail returns me this error.</p>
<p>&#8220;We&#8217;re writing to let you know that the group you tried to contact (js-test-driver) may not exist, or you may not have permission to post messages to the group. A few more details on why you weren&#8217;t able to post:</p>
<p> * You might have spelled or formatted the group name incorrectly.<br />
 * The owner of the group may have removed this group.<br />
 * You may need to join the group before receiving permission to post.<br />
 * This group may not be open to posting.<br />
&#8221;</p>
<p>Do you know where I can contact with someone that could help me?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misko</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3675</link>
		<dc:creator>misko</dc:creator>
		<pubDate>Thu, 01 Jul 2010 17:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3675</guid>
		<description>@Amischol,

for JSTestDrive related questions send email to js-test-driver@googlegroups.com, there are lot of user out there which will be able to help you out and get you up and running. Also check out the project page: http://code.google.com/p/js-test-driver/</description>
		<content:encoded><![CDATA[<p>@Amischol,</p>
<p>for JSTestDrive related questions send email to <a href="mailto:js-test-driver@googlegroups.com">js-test-driver@googlegroups.com</a>, there are lot of user out there which will be able to help you out and get you up and running. Also check out the project page: <a href="http://code.google.com/p/js-test-driver/" rel="nofollow">http://code.google.com/p/js-test-driver/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amischol</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3674</link>
		<dc:creator>Amischol</dc:creator>
		<pubDate>Thu, 01 Jul 2010 06:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3674</guid>
		<description>Hi, Misko.

I just know, about JsTestDriver, yesterday.

I think that it&#039;s one of the most important developments of the decade.

My problem is that I can&#039;t make working the plugin on my Eclipse.

I&#039;ve seen all the videos I found but didn&#039;t found any solution.

I installed the plugin, I show the correct view even I see how capture the browser (the plugin open the browser with the header of JsTestDriver.

My problem is when I&#039;m trying to launch my tests.

I tried to launch the tests from JsTestDriver view, I tried to launch from Run As (context menu on editor) and I get an error that says something like &quot;&quot;, and if I make one Run Configuration Eclipse remains blocked and I don&#039;t see any response (not in the browser, not in the Eclipse console)

I&#039;m using the example that remains in Google Code but I don&#039;t found any solution.

Can you guide me please?

Can you make one step by step guide?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, Misko.</p>
<p>I just know, about JsTestDriver, yesterday.</p>
<p>I think that it&#8217;s one of the most important developments of the decade.</p>
<p>My problem is that I can&#8217;t make working the plugin on my Eclipse.</p>
<p>I&#8217;ve seen all the videos I found but didn&#8217;t found any solution.</p>
<p>I installed the plugin, I show the correct view even I see how capture the browser (the plugin open the browser with the header of JsTestDriver.</p>
<p>My problem is when I&#8217;m trying to launch my tests.</p>
<p>I tried to launch the tests from JsTestDriver view, I tried to launch from Run As (context menu on editor) and I get an error that says something like &#8220;&#8221;, and if I make one Run Configuration Eclipse remains blocked and I don&#8217;t see any response (not in the browser, not in the Eclipse console)</p>
<p>I&#8217;m using the example that remains in Google Code but I don&#8217;t found any solution.</p>
<p>Can you guide me please?</p>
<p>Can you make one step by step guide?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misko</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3669</link>
		<dc:creator>misko</dc:creator>
		<pubDate>Wed, 30 Jun 2010 15:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3669</guid>
		<description>@Andy,

sorry, I don&#039;t deal with c#, so I am not aware of any examples, but they should be very equivalent to the java ones on this blog.</description>
		<content:encoded><![CDATA[<p>@Andy,</p>
<p>sorry, I don&#8217;t deal with c#, so I am not aware of any examples, but they should be very equivalent to the java ones on this blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Medinol</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3668</link>
		<dc:creator>Medinol</dc:creator>
		<pubDate>Wed, 30 Jun 2010 12:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3668</guid>
		<description>Hi Misko, 

i really enjoyed reading your posts on singleton using.

can you give me a link or direct me to a simple application in c# that implemets the ApplicationFactory pattern you talked about ?

thanks.</description>
		<content:encoded><![CDATA[<p>Hi Misko, </p>
<p>i really enjoyed reading your posts on singleton using.</p>
<p>can you give me a link or direct me to a simple application in c# that implemets the ApplicationFactory pattern you talked about ?</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misko</title>
		<link>http://misko.hevery.com/your-suggestions/comment-page-4/#comment-3492</link>
		<dc:creator>misko</dc:creator>
		<pubDate>Thu, 20 May 2010 18:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://misko.hevery.com/?page_id=122#comment-3492</guid>
		<description>sorry, there is not. we started working on it but did not get very far.</description>
		<content:encoded><![CDATA[<p>sorry, there is not. we started working on it but did not get very far.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
