Skip to content

Commit 2af7f08

Browse files
keep cleaning tests, get rid of random comments
1 parent ec58894 commit 2af7f08

23 files changed

Lines changed: 0 additions & 90 deletions

File tree

src/test/java/org/ogo/test/classstructuretests/inheritancetest/A.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ public class A extends B implements D {
55
int b;
66
E f;
77

8-
/** class constructor */
98
A() {
109
a = 10;
1110
b = 20;

src/test/java/org/ogo/test/classstructuretests/inheritancetest/B.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ public class B implements C {
44

55
int c;
66

7-
/** class constructor */
87
B() {
98
c = 30;
109
}

src/test/java/org/ogo/test/classstructuretests/inheritancetest/C.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
public interface C extends D, E {
44
int d = 40;
5-
/** class constructor */
65
}

src/test/java/org/ogo/test/classstructuretests/singleclassmultipleconnectedobjects/SingleClassMultipleConnectedObjectsTest.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
public class SingleClassMultipleConnectedObjectsTest {
1717

1818
/**
19-
* regular
20-
*
2119
* @since 1.0.0
2220
* @version 1.0.0
2321
*/
@@ -31,8 +29,6 @@ public static void initQueryEngine()
3129
}
3230

3331
/**
34-
* regular
35-
*
3632
* @since 1.0.0
3733
* @version 1.0.0
3834
*/
@@ -50,8 +46,6 @@ public void matchATest() throws RemoteException {
5046
}
5147

5248
/**
53-
* regular
54-
*
5549
* @since 1.0.0
5650
* @version 1.0.0
5751
*/
@@ -66,8 +60,6 @@ public void getFieldOfCTest() throws RemoteException {
6660
}
6761

6862
/**
69-
* regular
70-
*
7163
* @since 1.0.0
7264
* @version 1.0.0
7365
*/

src/test/java/org/ogo/test/createclasses/CreateClassWithOnlyPrimitiveFieldsTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
public class CreateClassWithOnlyPrimitiveFieldsTest {
1616

1717
/**
18-
* regular
19-
*
2018
* @since 1.0.0
2119
*/
2220
@BeforeAll

src/test/java/org/ogo/test/createdatastructure/createbinarytree/BinaryTreeTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
public class BinaryTreeTest {
1818

1919
/**
20-
* regular
21-
*
2220
* @since 1.0.0
2321
* @version 1.0.0
2422
*/
@@ -31,8 +29,6 @@ public static void initQueryEngine()
3129
}
3230

3331
/**
34-
* regular
35-
*
3632
* @since 1.0.0
3733
* @version 1.0.0
3834
*/
@@ -70,8 +66,6 @@ public void addTwoNodes() throws RemoteException {
7066
}
7167

7268
/**
73-
* regular
74-
*
7569
* @since 1.0.0
7670
* @version 1.0.0
7771
*/

src/test/java/org/ogo/test/createdatastructure/createbinarytree/Node.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ public class Node {
55
Node left;
66
Node right;
77

8-
/** class constructor */
98
Node() {
109
value = 0;
1110
left = null;

src/test/java/org/ogo/test/datastructuretests/DataStructureTest.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ public class DataStructureTest {
3434
UndirectedSparseGraph<Integer, Integer> jungudSparseGraph;
3535

3636
/**
37-
* regular
38-
*
3937
* @since 1.0.0
4038
*/
4139
@BeforeAll
@@ -54,8 +52,6 @@ public static void initQueryEngine() throws InterruptedException, IOException, N
5452
}
5553

5654
/**
57-
* regular
58-
*
5955
* @since 1.0.0
6056
*/
6157
@RepeatedTest(1)
@@ -105,8 +101,6 @@ public void checkArrayDeque3() throws RemoteException {
105101
}
106102

107103
/**
108-
* regular
109-
*
110104
* @since 1.0.0
111105
*/
112106
@RepeatedTest(1)
@@ -129,8 +123,6 @@ public void checkArrayList() throws RemoteException, InterruptedException {
129123
}
130124

131125
/**
132-
* regular
133-
*
134126
* @since 1.0.0
135127
*/
136128
@RepeatedTest(1)
@@ -152,8 +144,6 @@ public void checkVector() throws RemoteException, InterruptedException {
152144
}
153145

154146
/**
155-
* regular
156-
*
157147
* @since 1.0.0
158148
*/
159149
@RepeatedTest(1)
@@ -175,8 +165,6 @@ public void checkLinkedList() throws RemoteException, InterruptedException {
175165
}
176166

177167
/**
178-
* regular
179-
*
180168
* @since 1.0.0
181169
*/
182170
@RepeatedTest(1)
@@ -225,8 +213,6 @@ public void checkHashSet() throws RemoteException, InterruptedException {
225213
}
226214

227215
/**
228-
* regular
229-
*
230216
* @since 1.0.0
231217
*/
232218
@RepeatedTest(1)
@@ -257,8 +243,6 @@ public void checkSparseGraph() throws RemoteException, InterruptedException {
257243
}
258244

259245
/**
260-
* regular
261-
*
262246
* @since 1.0.0
263247
*/
264248
@RepeatedTest(1)
@@ -287,8 +271,6 @@ public void checkDirectedSparseGraph() throws RemoteException, InterruptedExcept
287271
}
288272

289273
/**
290-
* regular
291-
*
292274
* @since 1.0.0
293275
*/
294276
@RepeatedTest(1)

src/test/java/org/ogo/test/instancecount/A.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ public class A {
44
B b;
55
C c;
66

7-
/** class constructor */
87
A() {
98
b = new B();
109
c = new C();

src/test/java/org/ogo/test/instancecount/B.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ public class B {
66
int var2[];
77
C c[];
88

9-
/** class constructor */
109
B() {
1110
var1 = "HELLO WORLD";
1211
var2 = new int[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

0 commit comments

Comments
 (0)