CSC/ECE 517 Fall 2009/wiki1a 1 JunitTest

From Expertiza_Wiki
Revision as of 23:18, 6 September 2009 by Wolverine (talk | contribs)
Jump to navigation Jump to search

Writing Effective Junit Test Cases

/**

  • Sets up the test fixture.
  • (Called before every test case method.)
  • /

@Before public void setUp() { emptyList = new java.util.ArrayList(); }

/