package dev.llan.model.cards;
import dev.llan.model.Game;
import dev.llan.model.GameContainer;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class CardCollectionTest {
private CardCollection collection;
@BeforeEach
void setUp() {
GameContainer.getInstance().initGame();
Game game = GameContainer.getInstance().getCurrentGame();
collection = game.getPlayer().getCollection();
}
@Test
void createNewDeck() {
Deck deck = collection.createNewDeck();
}
@Test
void selectCard() {}
@Test
void swapCards() {}
@Test
void addNewCard() {}
@Test
void removeCard() {}
@Test
void testClone() {}
}