12345678910111213141516171819202122232425262728 |
- using System.Collections;
- using System.Collections.Generic;
- using NUnit.Framework;
- using UnityEngine;
- using UnityEngine.TestTools;
- namespace Tests
- {
- public class XRLineRendererTests
- {
- // A Test behaves as an ordinary method
- [Test]
- public void XRLineRendererTestsSimplePasses()
- {
- // Use the Assert class to test conditions
- }
- // A UnityTest behaves like a coroutine in Play Mode. In Edit Mode you can use
- // `yield return null;` to skip a frame.
- [UnityTest]
- public IEnumerator XRLineRendererTestsWithEnumeratorPasses()
- {
- // Use the Assert class to test conditions.
- // Use yield to skip a frame.
- yield return null;
- }
- }
- }
|