| 12345678910111213141516171819202122232425262728 |
-
-
- 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
- {
- @Test
-
- public void AccountsNumber(){
- Account act = new Account();
- int x=2;
- int actual=x;
- int expected =2;
-
- assertEquals(expected,actual);
-
- }
- }
|