Last active
August 26, 2019 15:16
-
-
Save rkandas/56c74491bd760cd9c34abff68e8057ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using NUnit.Framework; | |
using UnityEngine; | |
using UnityEngine.TestTools; | |
namespace Tests | |
{ | |
public class AssetSpawnerTest | |
{ | |
[UnityTest] | |
public IEnumerator Should_InstantiateObject_When_GivenStringHasNameAndPosition() | |
{ | |
Assert.IsNotNull(GameObject.Find("CubeOne")); | |
yield return null; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment