Package belotetime.tests

Source Code of belotetime.tests.TestGame

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());
    }
  }

}
TOP

Related Classes of belotetime.tests.TestGame

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.