Search in sources :

Example 91 with Values

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

the class PseudoMultiply method test_empty_1_3.

@Test
public void test_empty_1_3() {
    Values values = createRow(1, 2).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 92 with Values

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

the class PseudoMultiply method test_empty_3_3.

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

Example 93 with Values

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

the class PseudoMultiply method testDiag_enlarge_2_8.

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

Example 94 with Values

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

the class PseudoMultiply method test_empty_1_5.

@Test
public void test_empty_1_5() {
    Values values = createRow((Object[]) new Object[0][0]).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 95 with Values

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

the class PseudoMultiply method testDiag_cachedTheSame_4.

@Test
public void testDiag_cachedTheSame_4() {
    Values values = createColumn(1).pseudoMultiply();
    values = values.pseudoMultiply(31).pseudoMultiply(createRow());
    ValuesComparison.checkCachedReturnsTheSame(values);
}
Also used : Values(com.sun.tck.lib.tgf.Values) 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