mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 00:22:40 +01:00
Adds TestJobException
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user