diff --git a/tests/Tgstation.Server.Host.Tests/Core/TestJobException.cs b/tests/Tgstation.Server.Host.Tests/Core/TestJobException.cs new file mode 100644 index 0000000000..9f5abc5235 --- /dev/null +++ b/tests/Tgstation.Server.Host.Tests/Core/TestJobException.cs @@ -0,0 +1,17 @@ +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System; + +namespace Tgstation.Server.Host.Core.Tests +{ + [TestClass] + public sealed class TestJobException + { + [TestMethod] + public void TestConstruction() + { + new JobException(); + new JobException("Message"); + new JobException("Message", new Exception()); + } + } +}