Findryan

Untitled

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