WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Tests/Editor/DocExampleCode/TestStub.cs
2025-01-07 02:06:59 +01:00

15 lines
353 B
C#

using NUnit.Framework;
namespace AddressableAssets.DocExampleCode
{
// Exists to so that the files in this folder can exist in Tests
internal class TestStub
{
// A Test behaves as an ordinary method
[Test]
public void RequiredTest()
{
// Use the Assert class to test conditions
}
}
}