28 lines
733 B
Java
28 lines
733 B
Java
|
|
package fr.iut_fbleau.AvalamTests ;
|
||
|
|
|
||
|
|
import fr.iut_fbleau.Avalam.Tower ;
|
||
|
|
import fr.iut_fbleau.Avalam.Color ;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* La classe <code>TestPion</code>
|
||
|
|
*
|
||
|
|
* @version 1.0
|
||
|
|
* @author Aurélien
|
||
|
|
* Date : 16-10-25 ; 16-10-25
|
||
|
|
* Licence :
|
||
|
|
*/
|
||
|
|
public class TestTower {
|
||
|
|
public static void main(String[] args){
|
||
|
|
Tower t1 = new Tower(Color.RED);
|
||
|
|
Tower t2 = new Tower(Color.YELLOW);
|
||
|
|
|
||
|
|
System.out.println("Vérification données :");
|
||
|
|
System.out.println("RED = " + t1.getColor());
|
||
|
|
System.out.println("1 = " + t1.getHeight());
|
||
|
|
|
||
|
|
System.out.println("\nVérification empilement :");
|
||
|
|
t1.mergeTower(t2);
|
||
|
|
System.out.println("YELLOW = " + t1.getColor());
|
||
|
|
System.out.println("2 = " + t1.getHeight());
|
||
|
|
}
|
||
|
|
}
|