mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 03:28:26 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using QSB.Utility;
|
|
|
|
namespace QSBTests
|
|
{
|
|
[TestClass]
|
|
public class UtilityTests
|
|
{
|
|
[TestMethod]
|
|
public void IsInUnitTest()
|
|
=> Assert.IsTrue(UnitTestDetector.IsInUnitTest, "UnitTestDetector is not working.");
|
|
}
|
|
}
|