forked from ucsd-cse15l-w22/markdown-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkdownParseTest.java
More file actions
44 lines (36 loc) · 1.32 KB
/
MarkdownParseTest.java
File metadata and controls
44 lines (36 loc) · 1.32 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
import static org.junit.Assert.*;
import org.junit.*;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
public class MarkdownParseTest {
@Test
public void addition() {
assertEquals(2, 1 + 1);
}
@Test
public void testFile1() throws IOException {
String contents= Files.readString(Path.of("test-file.md"));
List<String> expect = List.of("https://something.com", "some-page.html");
assertEquals(MarkdownParse.getLinks(contents), expect);
}
@Test
public void testFile2() throws IOException {
String contents= Files.readString(Path.of("test-file2.md"));
List<String> expect = List.of("https://something.com", "some-page.html");
assertEquals(MarkdownParse.getLinks(contents), expect);
}
@Test
public void testFile6() throws IOException {
String contents= Files.readString(Path.of("test-file6.md"));
List<String> expect = List.of("page.com");
assertEquals(MarkdownParse.getLinks(contents), expect);
}
@Test
public void testFile3() throws IOException {
String contents= Files.readString(Path.of("test-file3.md"));
List<String> expect = List.of("https://something.com");
assertEquals(MarkdownParse.getLinks(contents), expect);
}
}