some code samples, various examples of simple modeling ideas and some minor algorithms.

AccountTest.java 450B

12345678910111213141516171819202122232425262728
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. /**
  6. * The test class AccountTest.
  7. *
  8. * @author (your name)
  9. * @version (a version number or a date)
  10. */
  11. public class AccountTest
  12. {
  13. @Test
  14. public void AccountsNumber(){
  15. Account act = new Account();
  16. int x=2;
  17. int actual=x;
  18. int expected =2;
  19. assertEquals(expected,actual);
  20. }
  21. }