Be aware that if you are only going to use this script class for testing in EditMode, you can delete the second method using statements such as the following to give you a minimal skeleton to work from:
using NUnit.Framework;
public class UnitTestSkeleton
{
[Test]
public void NewTestScriptSimplePasses()
{
// write your assertion(s) here
}
}
This simpler skeleton testing class is for when we are writing code-only unit tests.