unittests_sources.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.18.0.css">
  7. </head>
  8. <body>
  9. <div id="qunit"></div>
  10. <script src="qunit-1.18.0.js"></script>
  11. <script src="qunit-utils.js"></script>
  12. <!-- add sources to test below -->
  13. <script src="../../src/Three.js"></script>
  14. <script src="../../src/math/Color.js"></script>
  15. <script src="../../src/math/Quaternion.js"></script>
  16. <script src="../../src/math/Vector2.js"></script>
  17. <script src="../../src/math/Vector3.js"></script>
  18. <script src="../../src/math/Vector4.js"></script>
  19. <script src="../../src/math/Euler.js"></script>
  20. <script src="../../src/math/Line3.js"></script>
  21. <script src="../../src/math/Box2.js"></script>
  22. <script src="../../src/math/Box3.js"></script>
  23. <script src="../../src/math/Matrix3.js"></script>
  24. <script src="../../src/math/Matrix4.js"></script>
  25. <script src="../../src/math/Ray.js"></script>
  26. <script src="../../src/math/Sphere.js"></script>
  27. <script src="../../src/math/Frustum.js"></script>
  28. <script src="../../src/math/Plane.js"></script>
  29. <script src="../../src/math/Math.js"></script>
  30. <script src="../../src/math/Triangle.js"></script>
  31. <script src="../../src/math/Interpolant.js"></script>
  32. <script src="../../src/extras/core/Curve.js"></script>
  33. <script src="../../src/extras/CurveUtils.js"></script>
  34. <script src="../../src/extras/curves/CatmullRomCurve3.js"></script>
  35. <script src="../../src/extras/curves/ClosedSplineCurve3.js"></script>
  36. <!-- add class-based unit tests below -->
  37. <script src="math/Constants.js"></script>
  38. <script src="math/Box2.js"></script>
  39. <script src="math/Box3.js"></script>
  40. <script src="math/Plane.js"></script>
  41. <script src="math/Ray.js"></script>
  42. <script src="math/Sphere.js"></script>
  43. <script src="math/Triangle.js"></script>
  44. <script src="math/Vector2.js"></script>
  45. <script src="math/Vector3.js"></script>
  46. <script src="math/Vector4.js"></script>
  47. <script src="math/Euler.js"></script>
  48. <script src="math/Line3.js"></script>
  49. <script src="math/Quaternion.js"></script>
  50. <script src="math/Math.js"></script>
  51. <script src="math/Matrix3.js"></script>
  52. <script src="math/Matrix4.js"></script>
  53. <script src="math/Frustum.js"></script>
  54. <script src="math/Color.js"></script>
  55. <script src="math/Interpolant.js"></script>
  56. <script src="extras/curves/ClosedSplineCurve3.js"></script>
  57. <script src="extras/curves/CatmullRomCurve3.js"></script>
  58. </body>
  59. </html>