Created
February 23, 2013 07:46
-
-
Save vandershraaf/5018876 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SimpleCounter { | |
public static int counter = 0; | |
public SimpleCounter(){ | |
} | |
public void addOne(){ | |
counter++; | |
} | |
} | |
public class TestSimpleCounter { | |
@Test | |
public void testCountOne(){ | |
} | |
public void testCountTwo(){ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment