unittests_sources.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ThreeJS Unit Tests - Using Files in /src</title>
  6. <link rel="stylesheet" href="qunit-1.10.0.css">
  7. </head>
  8. <body>
  9. <div id="qunit"></div>
  10. <script src="qunit-1.10.0.js"></script>
  11. <!-- add ThreeJS sources to test below -->
  12. <script src="../../src/Three.js"></script>
  13. <script src="../../src/math/Vector2.js"></script>
  14. <script src="../../src/math/Vector3.js"></script>
  15. <script src="../../src/math/Vector4.js"></script>
  16. <script src="../../src/math/Box2.js"></script>
  17. <script src="../../src/math/Box3.js"></script>
  18. <script src="../../src/math/Plane.js"></script>
  19. <script src="../../src/math/Ray.js"></script>
  20. <script src="../../src/math/Sphere.js"></script>
  21. <script src="../../src/math/Triangle.js"></script>
  22. <script src="../../src/math/Matrix3.js"></script>
  23. <script src="../../src/math/Matrix4.js"></script>
  24. <script src="../../src/math/Color.js"></script>
  25. <script src="../../src/math/Quaternion.js"></script>
  26. <!-- add class-based unit tests below -->
  27. <script src="math/Constants.js"></script>
  28. <script src="math/Box2.js"></script>
  29. <script src="math/Box3.js"></script>
  30. <script src="math/Plane.js"></script>
  31. <script src="math/Ray.js"></script>
  32. <script src="math/Sphere.js"></script>
  33. <script src="math/Triangle.js"></script>
  34. <script src="math/Vector2.js"></script>
  35. <script src="math/Vector3.js"></script>
  36. <script src="math/Vector4.js"></script>
  37. <script src="math/Quaternion.js"></script>
  38. </body>
  39. </html>