-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathMainTest.java
More file actions
47 lines (40 loc) · 1.02 KB
/
MainTest.java
File metadata and controls
47 lines (40 loc) · 1.02 KB
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
38
39
40
41
42
43
44
45
46
47
import org.junit.Assert;
import org.junit.Test;
public class MainTest {
Main test = new Main();
@Test
public void findAlphabetsTest() {
// When
String seeker = test.findAlphabetCharacters();
System.out.println(seeker);
}
// @Test
// public void getListTest() {
// // When
// String seeker = test.getList();
// System.out.println(seeker);
// }
//
// @Test
// public void countMMilkTest() {
// // When
// int actualCount = test.countMilk();
// int expectedCount = 8;
// Assert.assertEquals(expectedCount, actualCount);
// }
//
// @Test
// public void correctSeparatorTest(){
// // When
// String seeker = test.correctSeparator();
// System.out.println(seeker);
// }
//
//
// @Test
// public void semiColonSeparatorTest() { // HELPER to find semiColon and puts each on a new line
// // When
// String seeker = test.semiColonSeparator();
// System.out.println(seeker);
// }
}