From 258a24dfcade05bcf37c1cb4274b3337dbc8813b Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Tue, 2 Oct 2018 12:14:18 -0400 Subject: [PATCH] Adds TestJobException --- .../Core/TestJobException.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/Tgstation.Server.Host.Tests/Core/TestJobException.cs 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()); + } + } +}