| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
-
-
- import static org.junit.Assert.*;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- /**
- * The test class AccountTest.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class AccountTest
- {
- /**
- * Default constructor for test class AccountTest
- */
- public AccountTest()
- {
- }
-
- @Test
- public void testBalance(){
- Account account = new Account(1000);
- // int amount = 1000;
- // int expected = 1000;
- //int actual = Account.balance();
- assertTrue(account.balance() == 1000);
- }
- /**
- * Sets up the test fixture.
- *
- * Called before every test case method.
- */
- @Before
- public void setUp()
- {
- }
-
- /**
- * Tears down the test fixture.
- *
- * Called after every test case method.
- */
- @After
- public void tearDown()
- {
- }
- }
|