mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Moved tests for NzbDrone.Common to its own test project. added some new tests.
This commit is contained in:
parent
f52620db70
commit
f9a316f632
12 changed files with 350 additions and 35 deletions
44
NzbDrone.Common.Test/EnviromentProviderTest.cs
Normal file
44
NzbDrone.Common.Test/EnviromentProviderTest.cs
Normal file
|
@ -0,0 +1,44 @@
|
|||
// ReSharper disable InconsistentNaming
|
||||
|
||||
using System.IO;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace NzbDrone.Common.Test
|
||||
{
|
||||
[TestFixture]
|
||||
public class EnviromentProviderTest
|
||||
{
|
||||
readonly EnviromentProvider enviromentController = new EnviromentProvider();
|
||||
|
||||
[Test]
|
||||
|
||||
public void Is_user_interactive_should_be_false()
|
||||
{
|
||||
enviromentController.IsUserInteractive.Should().BeTrue();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Log_path_should_not_be_empty()
|
||||
{
|
||||
enviromentController.LogPath.Should().NotBeBlank();
|
||||
Path.IsPathRooted(enviromentController.LogPath).Should().BeTrue("Path is not rooted");
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void StartupPath_should_not_be_empty()
|
||||
{
|
||||
enviromentController.StartUpPath.Should().NotBeBlank();
|
||||
Path.IsPathRooted(enviromentController.StartUpPath).Should().BeTrue("Path is not rooted");
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ApplicationPath_should_not_be_empty()
|
||||
{
|
||||
enviromentController.ApplicationPath.Should().NotBeBlank();
|
||||
Path.IsPathRooted(enviromentController.ApplicationPath).Should().BeTrue("Path is not rooted");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue