Team Beck (Ece, Merve²) übernehmen zusammen mit Paul das Universum .·:*¨༺ ༻¨*:·.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ForkTest.java 400B

1234567891011121314151617181920212223242526272829303132
  1. package praktikum04;
  2. import org.junit.jupiter.api.Test;
  3. import static org.junit.jupiter.api.Assertions.*;
  4. class ForkTest {
  5. @Test
  6. void getId() {
  7. Fork fork = new Fork(1);
  8. fork.getId();
  9. }
  10. @Test
  11. void take() {
  12. Fork fork = new Fork(1);
  13. }
  14. @Test
  15. void put() {
  16. Fork fork = new Fork(1);
  17. fork.take();
  18. fork.put();
  19. }
  20. }