• Home
  • Raw
  • Download

Lines Matching refs:assertRelation

283   private void assertRelation(  in assertRelation()  method in S2LoopTest
296 assertRelation(northHemi, northHemi, 1, true, false); in testLoopRelations()
297 assertRelation(northHemi, southHemi, 0, false, false); in testLoopRelations()
298 assertRelation(northHemi, eastHemi, -1, true, false); in testLoopRelations()
299 assertRelation(northHemi, arctic80, 1, true, true); in testLoopRelations()
300 assertRelation(northHemi, antarctic80, 0, false, true); in testLoopRelations()
301 assertRelation(northHemi, candyCane, -1, true, false); in testLoopRelations()
304 assertRelation(northHemi3, northHemi3, 1, true, false); in testLoopRelations()
305 assertRelation(northHemi3, eastHemi, -1, true, false); in testLoopRelations()
306 assertRelation(northHemi3, arctic80, 1, true, true); in testLoopRelations()
307 assertRelation(northHemi3, antarctic80, 0, false, true); in testLoopRelations()
308 assertRelation(northHemi3, candyCane, -1, true, false); in testLoopRelations()
310 assertRelation(southHemi, northHemi, 0, false, false); in testLoopRelations()
311 assertRelation(southHemi, southHemi, 1, true, false); in testLoopRelations()
312 assertRelation(southHemi, farHemi, -1, true, false); in testLoopRelations()
313 assertRelation(southHemi, arctic80, 0, false, true); in testLoopRelations()
314 assertRelation(southHemi, antarctic80, 1, true, true); in testLoopRelations()
315 assertRelation(southHemi, candyCane, -1, true, false); in testLoopRelations()
317 assertRelation(candyCane, northHemi, -1, true, false); in testLoopRelations()
318 assertRelation(candyCane, southHemi, -1, true, false); in testLoopRelations()
319 assertRelation(candyCane, arctic80, 0, false, true); in testLoopRelations()
320 assertRelation(candyCane, antarctic80, 0, false, true); in testLoopRelations()
321 assertRelation(candyCane, candyCane, 1, true, false); in testLoopRelations()
323 assertRelation(nearHemi, westHemi, -1, true, false); in testLoopRelations()
325 assertRelation(smallNeCw, southHemi, 1, true, false); in testLoopRelations()
326 assertRelation(smallNeCw, westHemi, 1, true, false); in testLoopRelations()
327 assertRelation(smallNeCw, northHemi, -2, true, false); in testLoopRelations()
328 assertRelation(smallNeCw, eastHemi, -2, true, false); in testLoopRelations()
330 assertRelation(loopA, loopA, 1, true, false); in testLoopRelations()
331 assertRelation(loopA, loopB, -1, true, false); in testLoopRelations()
332 assertRelation(loopA, aIntersectB, 1, true, false); in testLoopRelations()
333 assertRelation(loopA, aUnionB, 0, true, false); in testLoopRelations()
334 assertRelation(loopA, aMinusB, 1, true, false); in testLoopRelations()
335 assertRelation(loopA, bMinusA, 0, false, false); in testLoopRelations()
337 assertRelation(loopB, loopA, -1, true, false); in testLoopRelations()
338 assertRelation(loopB, loopB, 1, true, false); in testLoopRelations()
339 assertRelation(loopB, aIntersectB, 1, true, false); in testLoopRelations()
340 assertRelation(loopB, aUnionB, 0, true, false); in testLoopRelations()
341 assertRelation(loopB, aMinusB, 0, false, false); in testLoopRelations()
342 assertRelation(loopB, bMinusA, 1, true, false); in testLoopRelations()
344 assertRelation(aIntersectB, loopA, 0, true, false); in testLoopRelations()
345 assertRelation(aIntersectB, loopB, 0, true, false); in testLoopRelations()
346 assertRelation(aIntersectB, aIntersectB, 1, true, false); in testLoopRelations()
347 assertRelation(aIntersectB, aUnionB, 0, true, true); in testLoopRelations()
348 assertRelation(aIntersectB, aMinusB, 0, false, false); in testLoopRelations()
349 assertRelation(aIntersectB, bMinusA, 0, false, false); in testLoopRelations()
351 assertRelation(aUnionB, loopA, 1, true, false); in testLoopRelations()
352 assertRelation(aUnionB, loopB, 1, true, false); in testLoopRelations()
353 assertRelation(aUnionB, aIntersectB, 1, true, true); in testLoopRelations()
354 assertRelation(aUnionB, aUnionB, 1, true, false); in testLoopRelations()
355 assertRelation(aUnionB, aMinusB, 1, true, false); in testLoopRelations()
356 assertRelation(aUnionB, bMinusA, 1, true, false); in testLoopRelations()
358 assertRelation(aMinusB, loopA, 0, true, false); in testLoopRelations()
359 assertRelation(aMinusB, loopB, 0, false, false); in testLoopRelations()
360 assertRelation(aMinusB, aIntersectB, 0, false, false); in testLoopRelations()
361 assertRelation(aMinusB, aUnionB, 0, true, false); in testLoopRelations()
362 assertRelation(aMinusB, aMinusB, 1, true, false); in testLoopRelations()
363 assertRelation(aMinusB, bMinusA, 0, false, true); in testLoopRelations()
365 assertRelation(bMinusA, loopA, 0, false, false); in testLoopRelations()
366 assertRelation(bMinusA, loopB, 0, true, false); in testLoopRelations()
367 assertRelation(bMinusA, aIntersectB, 0, false, false); in testLoopRelations()
368 assertRelation(bMinusA, aUnionB, 0, true, false); in testLoopRelations()
369 assertRelation(bMinusA, aMinusB, 0, false, true); in testLoopRelations()
370 assertRelation(bMinusA, bMinusA, 1, true, false); in testLoopRelations()