comparison truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java @ 22495:aeba89e1d8da

Add ComplexNumber sequence tests
author Matthias Grimmer <grimmer@ssw.jku.at>
date Fri, 11 Dec 2015 15:20:27 +0100
parents fa7b15454c66
children 6ab540203853
comparison
equal deleted inserted replaced
22489:28227895fa35 22495:aeba89e1d8da
42 42
43 import com.oracle.truffle.api.source.Source; 43 import com.oracle.truffle.api.source.Source;
44 import com.oracle.truffle.api.vm.PolyglotEngine; 44 import com.oracle.truffle.api.vm.PolyglotEngine;
45 import com.oracle.truffle.sl.test.instrument.InstrumentationTestMode; 45 import com.oracle.truffle.sl.test.instrument.InstrumentationTestMode;
46 import com.oracle.truffle.tck.TruffleTCK; 46 import com.oracle.truffle.tck.TruffleTCK;
47
47 import org.junit.After; 48 import org.junit.After;
49
48 import static org.junit.Assert.assertTrue; 50 import static org.junit.Assert.assertTrue;
51
49 import org.junit.Before; 52 import org.junit.Before;
50 import org.junit.Test; 53 import org.junit.Test;
51 54
52 /** 55 /**
53 * This is the way to verify your language implementation is compatible. 56 * This is the way to verify your language implementation is compatible.
218 221
219 @Override 222 @Override
220 public void testPrimitiveidentityFloat() throws Exception { 223 public void testPrimitiveidentityFloat() throws Exception {
221 } 224 }
222 225
226 @Override
227 public void testSumRealOfComplexNumbersA() throws Exception {
228 }
229
230 @Override
231 public void testSumRealOfComplexNumbersB() throws Exception {
232 }
233
234 @Override
235 public void testSumRealOfComplexNumbersAsStructuredDataColumnBased() throws Exception {
236 }
237
238 @Override
239 public void testSumRealOfComplexNumbersAsStructuredDataRowBased() throws Exception {
240 }
241
242 @Override
243 public void testCopyComplexNumbersA() throws Exception {
244 }
245
246 @Override
247 public void testCopyComplexNumbersB() throws Exception {
248 }
249
250 @Override
251 public void testCopyStructuredComplexToComplexNumbersA() throws Exception {
252 }
253
223 } 254 }