package ingsw.proj.cluedo.junittests;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import ingsw.proj.cluedo.componenti.Casella;
import ingsw.proj.cluedo.componenti.CasellaPassaggioSegreto;
import ingsw.proj.cluedo.componenti.StanzeEnum;
import java.awt.Point;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class CasellaPassaggioSegretoTest {
private CasellaPassaggioSegreto casella;
@SuppressWarnings(value={"unused"})
private Casella destinazione;
@Before
public void setUp() throws Exception {
destinazione = new Casella(StanzeEnum.CAMERA_LETTO, new Point(3, 2));
casella = new CasellaPassaggioSegreto(StanzeEnum.CAMERA_LETTO, new Point(4, 4), new Point(3,2));
}
@After
public void tearDown() throws Exception {
destinazione = null;
casella = null;
System.gc();
}
@Test
public void testCasellaPassaggioSegreto() {
assertNotNull(casella);
assertTrue(casella instanceof CasellaPassaggioSegreto);
assertTrue(casella instanceof Casella);
}
@Test(expected = NullPointerException.class)
public void testCasellaPassaggioSegretoNull() {
new CasellaPassaggioSegreto(null, new Point(2, 3), new Point(4,4));
new CasellaPassaggioSegreto(StanzeEnum.CAMERA_LETTO, new Point(2, 3), null);
new CasellaPassaggioSegreto(null, null, null);
}
@Test
public void testGetDestinazione() {
assertNotNull(casella.getDestinazione());
assertTrue(casella.getDestinazione() instanceof Point);
}
}