-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTests.java
37 lines (27 loc) · 978 Bytes
/
Tests.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import org.junit.Test;
public class Tests {
//TEST SPRAWDZAJACY, CZY NIE WYSTAPILY POWTORZENIA
@Test
public void shouldSayDuplicatesFound() {
Team team = new Team("first", "first", "second", "third", "fourth");
team.Calculate();
}
//TEST SPRAWDZAJACY NIEDOZWOLNE ZNAKI W PODANYCH PRZEZ UZYTKOWNIKA NAZWACH CHAMPIONOW
@Test
public void shouldSayWrongCharacters() {
Team team = new Team("-", ",,,,", ";;;;;", "18", "~~");
team.Calculate();
}
//TEST SPRAWDZAJACY, CZY PODANO KOMPLETNA DRUZYNE
@Test
public void nullChecker() {
Team team = new Team("second", "third", "fourth", "null", null);
team.Calculate();
}
//TEST SPRAWDZAJACY, CZY PODANE NAZWY BOHATEROW FAKTYCZNIE ZNAJDUJA SIE W BAZIE DANYCH
@Test
public static void shouldSayChampionNotInBase() {
Team team = new Team("Elise", "Yasuo", "Talon", "Nami", "Tomato");
team.Calculate();
}
}