use of com.oracle.tck.lib.autd2.unittests.IntPair in project jtharness by openjdk.
the class ComplexExclusionsInheritedTestCases method test_mix_9.
@Test
public void test_mix_9() {
Values values = DataFactory.createColumn(1, 2, 3, 7, 456, 45);
check(values.multiply(values).multiply(values).multiply(values).pseudoMultiply(values), new HashSet<IntPair>(), new HashSet<IntPair>(), new HashSet<IntPair>(), TGFUtils.EXCLUDE, "myTest,blabla,foo");
}
use of com.oracle.tck.lib.autd2.unittests.IntPair in project jtharness by openjdk.
the class ComplexExclusionsInheritedTestCases method test_multi_7.
@Test
public void test_multi_7() {
Values values = DataFactory.createColumn(1, 2, 3, 7, 456, 45);
check(values.multiply(values).multiply(values).multiply(values), new HashSet<IntPair>(), new HashSet<IntPair>(), new HashSet<IntPair>(), TGFUtils.EXCLUDE, "myTest,blabla,foo");
}
use of com.oracle.tck.lib.autd2.unittests.IntPair in project jtharness by openjdk.
the class ComplexExclusionsInheritedTestCases method test_multi_8.
@Test
public void test_multi_8() {
Values values = DataFactory.createColumn(1, 2, 3, 7, 456, 45);
check(values.multiply(values).multiply(values).multiply(values), new HashSet<IntPair>(), new HashSet<IntPair>(), new HashSet<IntPair>(), TGFUtils.EXCLUDE, "myTest,blabla,foo");
}
use of com.oracle.tck.lib.autd2.unittests.IntPair in project jtharness by openjdk.
the class ComplexExclusionsInheritedTestCases method test_mix_10.
@Test
public void test_mix_10() {
Values values = DataFactory.createColumn(1, 2, 3, 7, 456, 45);
check(values.multiply(values).intersect(values).multiply(values).pseudoMultiply(values), new HashSet<IntPair>(), new HashSet<IntPair>(), new HashSet<IntPair>(), TGFUtils.EXCLUDE, "myTest,blabla,foo");
}
use of com.oracle.tck.lib.autd2.unittests.IntPair in project jtharness by openjdk.
the class ComplexExclusionsInheritedTestCases method test_multi_5.
@Test
public void test_multi_5() {
Values values = DataFactory.createColumn(1, 2, 3, 7);
check(values.multiply(values).multiply(values).multiply(values), new HashSet<IntPair>(), new HashSet<IntPair>(), new HashSet<IntPair>(), TGFUtils.EXCLUDE, "myTest,blabla,foo");
}