31 lines
522 B
Java
31 lines
522 B
Java
|
/*
|
||
|
============================================================
|
||
|
This is the "KartenstapelTest" file from Author: Philipp Kotte
|
||
|
written on: 10 / 10 / 2023 at: 20:41
|
||
|
============================================================
|
||
|
*/
|
||
|
package Test.Domain;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
|
||
|
import static org.junit.Assert.assertEquals;
|
||
|
|
||
|
public class KartenstapelTest {
|
||
|
|
||
|
@Test
|
||
|
public void mischenTest() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void getAnzahlKartenTest() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void getObersteKarteTest() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|