mirror of
				https://github.com/maxartz15/Validator.git
				synced 2025-10-31 12:05:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using UnityEngine;
 | |
| using UnityEngine.TestTools;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using NUnit.Framework;
 | |
| 
 | |
| namespace COMPANYNAME.PACKAGENAME.Tests
 | |
| {
 | |
|     public class TestRuntimeExample
 | |
|     {
 | |
|         [Test]
 | |
|         public void TestRuntimeExampleSimplePasses()
 | |
|         {
 | |
|             // Use the Assert class to test conditions
 | |
|         }
 | |
| 
 | |
|         [UnityTest]
 | |
|         public IEnumerator TestRuntimeExampleEnumeratorPasses()
 | |
|         {
 | |
|             // Use the Assert class to test conditions.
 | |
|             // Use yield to skip a frame.
 | |
|             yield return null;
 | |
|         }
 | |
|     }
 | |
| }
 |