Proper unit testing: testing a method with no [accessible] state or return value - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T15:09:31Zhttp://stackoverflow.com/feeds/question/452689http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value3Proper unit testing: testing a method with no [accessible] state or return valuejbu2009-01-17T02:27:15Z2009-01-17T07:28:06Z
<p>Hi all,</p>
<p>I'm somewhat new to unit testing. One thing (for now) about proper testing confuses me.</p>
<p>For instance, how do you test a main method if it has no state and only console output? Like this, where myServer methods & state are private?</p>
<pre><code> public static void main(String[] args)
{
Server myServer = new Server()
if(myServer.start())
System.out.println("started");
else
System.out.println("failed");
}
</code></pre>
<p>I don't want to have to change my code and expose my Server methods & state to make them public.</p>
<p>Note, I'm not asking how to test myServer.start(), I'm asking how to test main() itself.</p>
<p>Please let me know.</p>
<p>Thanks guys,
jbu</p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452696#4526962Answer by cletus for Proper unit testing: testing a method with no [accessible] state or return valuecletus2009-01-17T02:32:24Z2009-01-17T02:32:24Z<p>You (generally) don't unit test main() methods. In your case, you unit test the Server class (and probably others) ie testing it's public interface.</p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452702#4527020Answer by Mark Brittingham for Proper unit testing: testing a method with no [accessible] state or return valueMark Brittingham2009-01-17T02:40:16Z2009-01-17T02:40:16Z<p>If you would like to have this case - and many others - cleared up, may I suggest the <a href="http://rads.stackoverflow.com/amzn/click/0977616673" rel="nofollow">Pragmatic Unit Testing</a> series? </p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452742#4527420Answer by Daniel Paull for Proper unit testing: testing a method with no [accessible] state or return valueDaniel Paull2009-01-17T03:36:02Z2009-01-17T03:36:02Z<p>Generally speaking, main() is not a "unit", and would be difficult to devise a unit test for. By convention, main() should return an int to indicate error state. Perhaps this is all you need?</p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452759#4527591Answer by Aleksander Adamowski for Proper unit testing: testing a method with no [accessible] state or return valueAleksander Adamowski2009-01-17T03:53:48Z2009-01-17T03:53:48Z<p>Since your method has information flow only in one direction - to the collaborator objects (in this example: the Server object), and doesn't otherwise return values or throw exceptions, you could supply a mock collaborator object (a mock Server in your example) that would have configured expectations about the method calls and their parameters received from your main() method.</p>
<p>You can use one of several mock object frameworks for that, e.g. Easymock.</p>
<p>During unit testing, the mock object would throw a proper exception when calls made on it by the main() method wouldn't match the configured expectations.</p>
<p>Of course, in order to supply a mock object, you'd have to modify the method a bit with regards to object instantiation - make the "Server" an interface, not a concrete class, and use a framework (like Spring) instead of manually instantiating your Server object, e.g. instead of:</p>
<pre><code>Server myServer = new Server();
</code></pre>
<p>you'd have this:</p>
<pre><code>Server myServer = applicationContext.getBean("server");
</code></pre>
<p>You'd create separate Spring application context configurations for production application and for unit tests, and the difference would be that application context for production would be configured using an XML file, while for unit tests would be programmatically created and populated with mock objects from your test classes' setUp() methods.</p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452867#4528670Answer by Steven A. Lowe for Proper unit testing: testing a method with no [accessible] state or return valueSteven A. Lowe2009-01-17T06:02:27Z2009-01-17T06:02:27Z<p>wrap the code in a non-main method and test that ;-)</p>
<p>seriously, what everyone else said</p>
<p>but if you must...make a unit test run the console app in a DOS shell (see the Process object) with STDOUT redirected to a file, then read the contents of the output file to see if it says "started" or "failed", whichever you expect</p>
http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value/452942#4529425Answer by Gishu for Proper unit testing: testing a method with no [accessible] state or return valueGishu2009-01-17T07:25:26Z2009-01-17T07:25:26Z<p>Main methods are supposed to be very thin and just get the ball rolling. Hence generally not tested.
e.g. a .net Winforms app Main method may contain</p>
<pre><code>static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainWindow());
}
</code></pre>
<p>If your main method is doing a lot of stuff, consider extracting a method (to a new class if need be). e.g. as shown below... (don't have a JavaIDE handy.. the foll .net code should be easy to translate) </p>
<pre><code>static void Main()
{
new MainApp().Run();
}
</code></pre>
<p>Now if Run can be tested.. Main too is covered. Lets look at MainApp. Refactored the 2 tasks of <em>starting the server</em> and <em>logging the result</em> as 2 methods.</p>
<pre><code>public class MainApp
{
private Server m_Server;
public MainApp():this(new Server())
{}
public MainApp(Server s)
{ m_Server = s; }
public void Run()
{ Log(LaunchServer()); }
private string LaunchServer()
{ return (m_Server.start() ? "started" : "failed"); }
protected virtual void Log(string sMessage)
{ System.Console.WriteLine(sMessage); }
}
</code></pre>
<p>Now lets look at the test code... I'll use the "subclass and override" trick to cache the result as shown below. (You could also use Mocks.. as per taste)</p>
<pre><code>public class FakeApp : MainApp
{
private string sLastLoggedMessage;
public FakeApp(Server s) : base(s) { }
public string getLastLoggedMessage()
{ return sLastLoggedMessage; }
protected override void Log(string sMessage)
{ sLastLoggedMessage = sMessage; }
}
</code></pre>
<p>the test is now trivial</p>
<pre><code>[TestFixture]
public class TestMainApp
{
[Test]
public void TestRun()
{
Server s = new Server();
FakeApp f = new FakeApp(s);
f.Run();
Assert.AreEqual("started", f.getLastLoggedMessage());
}
}
</code></pre>
<p>if you can't force Server.start() to succeed or fail as per your desire.. You can create a FakeServer.. subclass and override start() to return fixed values.</p>
<p><em>If a method does something, it can be tested. If it does not, it should cease to exist. Refactor it away.</em> HTH</p>