Checking the results of a Factory in a unit test - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T02:56:12Zhttp://stackoverflow.com/feeds/question/37310http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37310/checking-the-results-of-a-factory-in-a-unit-test5Checking the results of a Factory in a unit testjavelinBCD2008-09-01T00:40:03Z2008-10-23T10:49:39Z
<p>I have developed some classes with similar behavior, they all implement the same interface. I implemented a factory that creates the appropriate object and returns the interface. I am writing a unit test for the factory. All you get back is an interface to the object.
What is the best way to test that the factory has worked correctly?</p>
<p>I would like to know the answer in Java, but if there is a solution that crosses languages I would like to know it.</p>
<p>Number 2. in the answer, would be done like the other answer? If so I will mark the other answer accepted as well and reword my question to adress both a factory where an interface is returned and you have no clue what type of concrete class implemented the interface, and the case where you do know what concrete class was used.</p>
http://stackoverflow.com/questions/37310/checking-the-results-of-a-factory-in-a-unit-test/37316#373166Answer by Cem Catikkas for Checking the results of a Factory in a unit testCem Catikkas2008-09-01T00:47:22Z2008-09-01T01:30:25Z<p>Since I don't know how your factory method looks like, all I can advise right now is to </p>
<ol>
<li><p>Check to see the object is the correct concrete implementation you were looking for:</p>
<pre><code>IMyInterface fromFactory = factory.create(...);
Assert.assertTrue(fromFactory instanceof MyInterfaceImpl1);
</code></pre></li>
<li><p>You can check if the factory setup the concrete instances with valid instance variables.</p></li>
</ol>
http://stackoverflow.com/questions/37310/checking-the-results-of-a-factory-in-a-unit-test/37318#373181Answer by izb for Checking the results of a Factory in a unit testizb2008-09-01T00:49:18Z2008-10-23T10:40:34Z<pre><code>if (myNewObject instanceof CorrectClass)
{
/* pass test */
}
</code></pre>
<p><strong>update:</strong></p>
<p>Don't know why this got marked down, so I'll expand it a bit...</p>
<pre><code>public void doTest()
{
MyInterface inst = MyFactory.createAppropriateObject();
if (! inst instanceof ExpectedConcreteClass)
{
/* FAIL */
}
}
</code></pre>
http://stackoverflow.com/questions/37310/checking-the-results-of-a-factory-in-a-unit-test/39369#393690Answer by Marcio Aguiar for Checking the results of a Factory in a unit testMarcio Aguiar2008-09-02T12:22:57Z2008-09-02T12:22:57Z<p>@cem-catikkas I think it would be more correct to compare the getClass().getName() values. In the case that MyInterfaceImpl1 class is subclassed your test could be broken, as the subclass is instanceof MyInterfaceImpl1. I would rewrite as follow:</p>
<pre><code>IMyInterface fromFactory = factory.create(...);
Assert.assertEquals(fromFactory.getClass().getName(), MyInterfaceImpl1.class.getName());
</code></pre>
<p>If you think this could fail in some way (I can't imagine), make the two verifications.</p>