Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit b4d3615

Browse files
committed
.
1 parent b2186b1 commit b4d3615

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.classpath

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
</attributes>
2121
</classpathentry>
2222
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Apache Tomcat v7.0 (2)"/>
23-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
23+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
2424
<attributes>
2525
<attribute name="owner.project.facets" value="java"/>
2626
</attributes>
2727
</classpathentry>
28+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
2829
<classpathentry kind="output" path="target/classes"/>
2930
</classpath>

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/bin/
33
.settings/org.eclipse.wst.common.component
44
.classpath
5+
.classpath
6+
.settings/org.eclipse.wst.common.component

.settings/org.eclipse.wst.common.component

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
55
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
66
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resource"/>
7+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/java"/>
78
<property name="context-root" value="GithubVisualization"/>
89
<property name="java-output-path" value="/GithubVisualization/target/classes"/>
910
</wb-module>

src/test/java/Testttt.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,9 @@ public void test3() {
2929
public void test4() {
3030
assertEquals(null, "123", "123");
3131
}
32+
33+
@Test
34+
public void test5() {
35+
assertEquals(null, "123", "12");
36+
}
3237
}

0 commit comments

Comments
 (0)