2025-05-01 01:48:08 -07:00

16 lines
415 B
C#

using NUnit.Framework;
namespace UnityEditor.Build.Pipeline.Editor.OptionalPackages.Tests
{
public class PlaceholderTests
{
[Test]
public void Test_Placeholder()
{
// this can be removed if optional package tests are added, the utr used by
// upm-ci doesn't currently seem to have a way to allow zero tests
Assert.IsTrue(true);
}
}
}