Guest User

Rangga TestClockDisplay

a guest
Oct 27th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class TestClockDisplay
  2. {
  3.  
  4. public TestClockDisplay()
  5. {
  6. }
  7.  
  8. public void test()
  9. {
  10. ClockDisplay clock = new ClockDisplay();
  11.  
  12. clock.setTime(22,30);
  13. System.out.println(clock.getTime());
  14.  
  15. clock.setTime(10,30);
  16. System.out.println(clock.getTime());
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment