Advertisement
Guest User

testPoint

a guest
Feb 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package spotGame;
  2.  
  3. import static org.junit.Assert.*;
  4.  
  5. import org.junit.Test;
  6.  
  7. public class testGame {
  8.  
  9.     @Test
  10.     public void test() {
  11.         //Plateau plat = new Plateau();
  12.         Joueur jB = new Joueur();
  13.        
  14.        
  15.     System.out.println(jB.getScore());
  16.     System.out.println("Gagner un point");
  17.    
  18.     jB.incScore();
  19.     System.out.println(jB.getScore());
  20.        
  21.    
  22.     }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement