Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. public class ChatTest extends junit.framework.TestCase {
  2.     private User user1;
  3.     private User user2;
  4.     private UserInterface userInte1;
  5.  
  6.     public void setUp ()
  7.     {
  8.         user1 = new User("Dan", "images/Koala.jpg");
  9.         user2 = new User("Angel", "images/Koala.jpg");
  10.         userInte1 = new UserInterface(user1, user2);
  11.     }
  12. }
Add Comment
Please, Sign In to add comment