Skip to content

Instantly share code, notes, and snippets.

@rkandas
Last active August 26, 2019 15:16
Show Gist options
  • Save rkandas/56c74491bd760cd9c34abff68e8057ab to your computer and use it in GitHub Desktop.
Save rkandas/56c74491bd760cd9c34abff68e8057ab to your computer and use it in GitHub Desktop.
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