29 lines
476 B
Java
29 lines
476 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;
|
|
|
|
public class KartenstapelTest {
|
|
|
|
@Test
|
|
public void mischenTest() {
|
|
|
|
}
|
|
|
|
@Test
|
|
public void getAnzahlKartenTest() {
|
|
|
|
}
|
|
|
|
@Test
|
|
public void getObersteKarteTest() {
|
|
|
|
}
|
|
|
|
}
|