mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-22 05:22:53 +01:00
17 lines
385 B
C#
17 lines
385 B
C#
using System;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace Tgstation.Server.Host.Extensions.Tests
|
|
{
|
|
[TestClass]
|
|
public sealed class TestGeneralConfigurationExtensions
|
|
{
|
|
[TestMethod]
|
|
public void TestThrowsOnNullParameter()
|
|
{
|
|
Assert.ThrowsExactly<ArgumentNullException>(() => GeneralConfigurationExtensions.GetCopyDirectoryTaskThrottle(null));
|
|
}
|
|
}
|
|
}
|