package belotetime.tests;
import static org.junit.Assert.*;
import org.junit.Test;
import belotetime.application.game.Card;
import belotetime.application.game.Game;
public class TestGame
{
@Test
public void test()
{
Game game = new Game();
assertTrue(game.getPacket().getCards().size() == 32);
for(Card c : game.getPacket().getCards())
{
System.out.println(c.getImg());
}
}
}