Search in sources :

Example 66 with Values

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

the class PseudoMultiply method test_empty_1_15.

@Test
public void test_empty_1_15() {
    Values values = createColumn(123).pseudoMultiply(234).pseudoMultiply(1).pseudoMultiply(new String[0][0]).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 67 with Values

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

the class PseudoMultiply method testDiag_enlarge_2_twice_shortcut_2.

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

Example 68 with Values

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

the class PseudoMultiply method testDiag_enlarge_2_2.

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

Example 69 with Values

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

the class PseudoMultiply method testDiag_6.

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

Example 70 with Values

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

the class PseudoMultiply method testDiag_enlarge_2_twice_shortcut_3.

@Test
public void testDiag_enlarge_2_twice_shortcut_3() {
    Values values = pseudoMultiply(createColumn(1), createColumn(2, 3), createColumn(3, 4, 5), createColumn(6, 7, 8, 9), createColumn(1, 2, 3, 4, 5), createColumn("a", "b", "c", "d"), createColumn("x", "y", "z"), createColumn(0, 1), createColumn(115));
    List<Object[]> expected = new ArrayList<Object[]>();
    expected.add(new Object[] { 1, 2, 3, 6, 1, "a", "x", 0, 115 });
    expected.add(new Object[] { 1, 3, 4, 7, 2, "b", "y", 1, 115 });
    expected.add(new Object[] { 1, 2, 5, 8, 3, "c", "z", 0, 115 });
    expected.add(new Object[] { 1, 2, 3, 9, 4, "d", "x", 1, 115 });
    expected.add(new Object[] { 1, 2, 3, 6, 5, "a", "y", 0, 115 });
    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