Search in sources :

Example 86 with Values

use of com.sun.tck.lib.tgf.Values in project jtharness by openjdk.

the class PseudoMultiply method test_empty_9.

@Test
public void test_empty_9() {
    Values values = createColumn().pseudoMultiply(createColumn(5, 6, 7)).pseudoMultiply(createColumn()).pseudoMultiply(5, 9).pseudoMultiply().pseudoMultiply();
    List<Object[]> expected = new ArrayList<Object[]>();
    ValuesComparison.compare(values, expected);
}
Also used : Values(com.sun.tck.lib.tgf.Values) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 87 with Values

use of com.sun.tck.lib.tgf.Values in project jtharness by openjdk.

the class PseudoMultiply method test_empty_1_14.

@Test
public void test_empty_1_14() {
    Values values = createColumn(123).pseudoMultiply(234).pseudoMultiply(1).pseudoMultiply().pseudoMultiply(1);
    List<Object[]> expected = new ArrayList<Object[]>();
    ValuesComparison.compare(values, expected);
}
Also used : Values(com.sun.tck.lib.tgf.Values) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 88 with Values

use of com.sun.tck.lib.tgf.Values in project jtharness by openjdk.

the class PseudoMultiply method test_empty_3_shortcut.

@Test
public void test_empty_3_shortcut() {
    Values values = pseudoMultiply(createRow(), createColumn(1, 2, 78));
    List<Object[]> expected = new ArrayList<Object[]>();
    ValuesComparison.compare(values, expected);
}
Also used : Values(com.sun.tck.lib.tgf.Values) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 89 with Values

use of com.sun.tck.lib.tgf.Values in project jtharness by openjdk.

the class PseudoMultiply method testDiag_enlarge_2_1_cachedTheSame.

@Test
public void testDiag_enlarge_2_1_cachedTheSame() {
    Values values = createColumn(1, 2, 7, 8, 9);
    values = values.pseudoMultiply(3, 4);
    ValuesComparison.checkCachedReturnsTheSame(values);
}
Also used : Values(com.sun.tck.lib.tgf.Values) Test(org.junit.Test)

Example 90 with Values

use of com.sun.tck.lib.tgf.Values in project jtharness by openjdk.

the class PseudoMultiply method testDiag_enlarge_2_10.

@Test
public void testDiag_enlarge_2_10() {
    Values values = createColumn(1, 0).pseudoMultiply(2, 3, 4).pseudoMultiply(7, 8, 9, 10);
    List<Object[]> expected = new ArrayList<Object[]>();
    expected.add(new Object[] { 1, 2, 7 });
    expected.add(new Object[] { 0, 3, 8 });
    expected.add(new Object[] { 1, 4, 9 });
    expected.add(new Object[] { 1, 2, 10 });
    ValuesComparison.compare(values, expected);
}
Also used : Values(com.sun.tck.lib.tgf.Values) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Aggregations

Values (com.sun.tck.lib.tgf.Values)528 Test (org.junit.Test)512 ArrayList (java.util.ArrayList)459 TestObject (com.oracle.tck.lib.autd2.unittests.TestObject)80 DataFactory.createValues (com.sun.tck.lib.tgf.DataFactory.createValues)50 Transform (com.sun.tck.lib.tgf.Transform)32 TestResult (com.oracle.tck.lib.autd2.TestResult)31 TestCase (com.sun.tck.test.TestCase)28 TestGroup (com.sun.tck.test.TestGroup)27 TestData (com.sun.tck.lib.tgf.TestData)22 BaseTestGroup (com.oracle.tck.lib.autd2.unittests.BaseTestGroup)21 ValuesImplSlow (com.oracle.tck.lib.autd2.unittests.tgfported.ValuesImplSlow)12 IntPair (com.oracle.tck.lib.autd2.unittests.IntPair)7 Operation (com.sun.tck.lib.tgf.data.Operation)6 DataFactory (com.sun.tck.lib.tgf.DataFactory)5 Color (java.awt.Color)5 ColorSpace (java.awt.color.ColorSpace)3 RandomAccess (java.util.RandomAccess)3 Assert.assertEquals (com.sun.tck.lib.Assert.assertEquals)2 Assert.assertTrue (com.sun.tck.lib.Assert.assertTrue)2