Search in sources :

Example 56 with Values

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

the class Multiply method testCombineCombine_3_supportingMethod_withEmpty_2.

@Test
public void testCombineCombine_3_supportingMethod_withEmpty_2() {
    Values values_1 = createColumn(1, 2);
    Values values_2 = createColumn(3, 4);
    Values values_3 = createColumn(5, 6);
    List<Object[]> expected = new ArrayList<Object[]>();
    ValuesComparison.compare(multiply(createColumn(), values_1, createColumn(), values_2, createColumn(), values_3, createColumn()), expected);
}
Also used : Values(com.sun.tck.lib.tgf.Values) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 57 with Values

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

the class Multiply method testCombine_empty_11.

@Test
public void testCombine_empty_11() {
    Values values = createColumn(159).multiply().multiply().multiply().multiply(6);
    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 58 with Values

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

the class Multiply method testMultiplyUtil_SingleItem.

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

Example 59 with Values

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

the class PseudoMultiply method test_empty_1_1.

@Test
public void test_empty_1_1() {
    Values values = createColumn(1, 2).pseudoMultiply(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 60 with Values

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

the class PseudoMultiply method test_empty_3_2.

@Test
public void test_empty_3_2() {
    Values values = pseudoMultiply(createColumn());
    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)

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