assertNotNull(casellaPiccola);
}
@Test(expected = NullPointerException.class)
public void testCasellaNull() {
new Casella(null, new Point(3, 2));
new Casella(StanzeEnum.CANTINA, new Point(-1,9));
new Casella(StanzeEnum.BIBLIOTECA, null);
casella.new CasellaRidotta(null,null,null,null);
casella.setOccupante(pedina);
}