Adds TestJobException

This commit is contained in:
Cyberboss
2018-10-02 12:14:18 -04:00
parent 6516bbc6c2
commit 258a24dfca
@@ -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());
}
}
}