Files
tgstation-server/tests/Tgstation.Server.Host.Tests/Extensions/TestGeneralConfigurationExtensions.cs

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));
}
}
}