Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
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.

27 lines
570 B

  1. package com.ugsbo.auslandssemester;
  2. import static org.junit.Assert.*;
  3. import org.junit.After;
  4. import org.junit.AfterClass;
  5. import org.junit.Before;
  6. import org.junit.BeforeClass;
  7. import org.junit.Test;
  8. import com.ugsbo.entscheider.Entscheider;
  9. public class JUnitTestAusslandssemesterSitzung {
  10. //USA als Destination
  11. @Test
  12. public void KategorieDestinationUSA() {
  13. Sitzung test = new Sitzung("Mustermann", "Max", 2, "USA");
  14. String erwartet = "USA";
  15. String b = test.kategorieDestination();
  16. assertEquals("Antwortstring sollte USA sein",erwartet,b);
  17. }
  18. }