CalibrationTests.cs 692 B

12345678910111213141516171819202122232425
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using NUnit.Framework;
  4. using UnityEngine;
  5. using UnityEngine.TestTools;
  6. public class CalibrationTests
  7. {
  8. // A Test behaves as an ordinary method
  9. [Test]
  10. public void CalibrationTestsSimplePasses()
  11. {
  12. // Use the Assert class to test conditions
  13. }
  14. // A UnityTest behaves like a coroutine in Play Mode. In Edit Mode you can use
  15. // `yield return null;` to skip a frame.
  16. [UnityTest]
  17. public IEnumerator CalibrationTestsWithEnumeratorPasses()
  18. {
  19. // Use the Assert class to test conditions.
  20. // Use yield to skip a frame.
  21. yield return null;
  22. }
  23. }