Proper unit testing: testing a method with no [accessible] state or return value - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T15:09:31Z http://stackoverflow.com/feeds/question/452689 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/452689/proper-unit-testing-testing-a-method-with-no-accessible-state-or-return-value 3 Proper unit testing: testing a method with no [accessible] state or return value jbu 2009-01-17T02:27:15Z 2009-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 &amp; 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 &amp; 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#452696 2 Answer by cletus for Proper unit testing: testing a method with no [accessible] state or return value cletus 2009-01-17T02:32:24Z 2009-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#452702 0 Answer by Mark Brittingham for Proper unit testing: testing a method with no [accessible] state or return value Mark Brittingham 2009-01-17T02:40:16Z 2009-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#452742 0 Answer by Daniel Paull for Proper unit testing: testing a method with no [accessible] state or return value Daniel Paull 2009-01-17T03:36:02Z 2009-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#452759 1 Answer by Aleksander Adamowski for Proper unit testing: testing a method with no [accessible] state or return value Aleksander Adamowski 2009-01-17T03:53:48Z 2009-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#452867 0 Answer by Steven A. Lowe for Proper unit testing: testing a method with no [accessible] state or return value Steven A. Lowe 2009-01-17T06:02:27Z 2009-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#452942 5 Answer by Gishu for Proper unit testing: testing a method with no [accessible] state or return value Gishu 2009-01-17T07:25:26Z 2009-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>