Files
Fonepay-Unity/Packages/com.voidbotz.fonepayunity/Tests/Runtime/RuntimeExampleTest.cs
Savya Bikram Shah 2223b2d3ae initital push
2026-05-07 14:18:36 +05:45

28 lines
587 B
C#

using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
namespace Voidbotz.Fonepayunity.Tests
{
class RuntimeExampleTest
{
[Test]
public void PlayModeSampleTestSimplePasses()
{
// Use the Assert class to test conditions.
}
// A UnityTest behaves like a coroutine in PlayMode
// and allows you to yield null to skip a frame in EditMode
[UnityTest]
public IEnumerator PlayModeSampleTestWithEnumeratorPasses()
{
// Use the Assert class to test conditions.
// yield to skip a frame
yield return null;
}
}
}