| library browser_test_harness; |
| |
| import 'dart:html'; |
| import 'dart:math' as Math; |
| import 'package:unittest/html_config.dart'; |
| import 'package:unittest/unittest.dart'; |
| import 'package:vector_math/vector_math.dart'; |
| |
| import 'vector_math_test.dart'; |
| // Headless testing for drone.io |
| |
| void main() { |
| group('QuaternionTest', () { |
| QuaternionTest qt = new QuaternionTest(); |
| test("test", () { |
| qt.test(); |
| }); |
| |
| }); |
| |
| group('MatrixTest', () { |
| MatrixTest mt = new MatrixTest(); |
| test("test", () { |
| mt.test(); |
| }); |
| }); |
| |
| group('VectorTest', () { |
| VectorTest vt = new VectorTest(); |
| test("test", () { |
| vt.test(); |
| }); |
| }); |
| |
| group('OpenGLMatrixTest', () { |
| OpenGLMatrixTest omt = new OpenGLMatrixTest(); |
| test("test", () { |
| omt.test(); |
| });; |
| }); |
| |
| group('BuiltinTest', () { |
| BuiltinTest bt = new BuiltinTest(); |
| test("test", () { |
| bt.test(); |
| }); |
| }); |
| } |
| |