123456789101112131415161718192021222324252627282930313233 |
- package Praktikum4;
-
- import org.junit.jupiter.api.Test;
-
- import static org.junit.jupiter.api.Assertions.*;
-
- class ForkTest {
-
- @Test
- void getId() {
- Fork fork = new Fork(1);
- assertEquals(1, fork.getId());
- }
-
- @Test
- void take() {
- Fork fork = new Fork(2);
- assertTrue(fork.take());// sollte nicht in Gebrauch sein
-
-
-
- }
-
-
- @Test
- void put() {
- Fork fork = new Fork(3);
- fork.put();
-
-
-
- }
- }
|