@@ -107,93 +107,4 @@ public void testNorm() {
107
107
double result = instance .norm ();
108
108
assertEquals (expResult , result , 0.0 );
109
109
}
110
-
111
- /**
112
- * Test of jaccard method, of class SparseIntegerVector.
113
- */
114
- @ Test
115
- public void testJaccard () {
116
- System .out .println ("jaccard" );
117
- SparseIntegerVector other = null ;
118
- SparseIntegerVector instance = new SparseIntegerVector ();
119
- double expResult = 0.0 ;
120
- double result = instance .jaccard (other );
121
- assertEquals (expResult , result , 0.0 );
122
- // TODO review the generated test code and remove the default call to fail.
123
- fail ("The test case is a prototype." );
124
- }
125
-
126
- /**
127
- * Test of union method, of class SparseIntegerVector.
128
- */
129
- @ Test
130
- public void testUnion () {
131
- System .out .println ("union" );
132
- SparseIntegerVector other = null ;
133
- SparseIntegerVector instance = new SparseIntegerVector ();
134
- int expResult = 0 ;
135
- int result = instance .union (other );
136
- assertEquals (expResult , result );
137
- // TODO review the generated test code and remove the default call to fail.
138
- fail ("The test case is a prototype." );
139
- }
140
-
141
- /**
142
- * Test of intersection method, of class SparseIntegerVector.
143
- */
144
- @ Test
145
- public void testIntersection () {
146
- System .out .println ("intersection" );
147
- SparseIntegerVector other = null ;
148
- SparseIntegerVector instance = new SparseIntegerVector ();
149
- int expResult = 0 ;
150
- int result = instance .intersection (other );
151
- assertEquals (expResult , result );
152
- // TODO review the generated test code and remove the default call to fail.
153
- fail ("The test case is a prototype." );
154
- }
155
-
156
- /**
157
- * Test of toString method, of class SparseIntegerVector.
158
- */
159
- @ Test
160
- public void testToString () {
161
- System .out .println ("toString" );
162
- SparseIntegerVector instance = new SparseIntegerVector ();
163
- String expResult = "" ;
164
- String result = instance .toString ();
165
- assertEquals (expResult , result );
166
- // TODO review the generated test code and remove the default call to fail.
167
- fail ("The test case is a prototype." );
168
- }
169
-
170
- /**
171
- * Test of qgram method, of class SparseIntegerVector.
172
- */
173
- @ Test
174
- public void testQgram () {
175
- System .out .println ("qgram" );
176
- SparseIntegerVector other = null ;
177
- SparseIntegerVector instance = new SparseIntegerVector ();
178
- double expResult = 0.0 ;
179
- double result = instance .qgram (other );
180
- assertEquals (expResult , result , 0.0 );
181
- // TODO review the generated test code and remove the default call to fail.
182
- fail ("The test case is a prototype." );
183
- }
184
-
185
- /**
186
- * Test of size method, of class SparseIntegerVector.
187
- */
188
- @ Test
189
- public void testSize () {
190
- System .out .println ("size" );
191
- SparseIntegerVector instance = new SparseIntegerVector ();
192
- int expResult = 0 ;
193
- int result = instance .size ();
194
- assertEquals (expResult , result );
195
- // TODO review the generated test code and remove the default call to fail.
196
- fail ("The test case is a prototype." );
197
- }
198
-
199
110
}
0 commit comments