mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-21 03:57:19 +01:00
18 lines
349 B
C#
18 lines
349 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
|
|
namespace Tgstation.Server.Host.Jobs.Tests
|
|
{
|
|
[TestClass]
|
|
public sealed class TestJobException
|
|
{
|
|
[TestMethod]
|
|
public void TestConstruction()
|
|
{
|
|
new JobException();
|
|
new JobException("Message");
|
|
new JobException("Message", new Exception("Inner Message"));
|
|
}
|
|
}
|
|
}
|