mirror of
https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git
synced 2026-05-03 17:28:52 +00:00
28 lines
676 B
C#
28 lines
676 B
C#
using ASCOM.LynxAstro.DewController;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
|
|
namespace LynxAstro.DewController.Switch.UnitTests
|
|
{
|
|
[TestFixture]
|
|
public class SwitchUnitTests
|
|
{
|
|
private ASCOM.LynxAstro.DewController.Switch _switch;
|
|
private Mock<ISharedResourcesWrapper> _sharedResourcesWrapperMock;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_sharedResourcesWrapperMock = new Mock<ISharedResourcesWrapper>();
|
|
|
|
_switch = new ASCOM.LynxAstro.DewController.Switch();
|
|
}
|
|
|
|
[Test]
|
|
public void CheckThatClassCreatedProperly()
|
|
{
|
|
Assert.That(_switch, Is.Not.Null);
|
|
}
|
|
}
|
|
}
|