public void T01_OverlordIsSuccesfullyCreated()
        {
            GameObject Overlord = TestSetup.CreateOverlord();

            Assert.IsNotNull(Overlord);
        }
Ejemplo n.º 2
0
 private void Setup(out GameObject gameObject, out Health health)
 {
     gameObject = TestSetup.CreateEmptyTestObject();
     health     = gameObject.AddComponent <Health>();
 }
 private void SetupMockHealth(out GameObject gameObject, out IHealth health)
 {
     gameObject = TestSetup.CreateEmptyTestObject();
     health     = Substitute.For <IHealth>();
 }