mirror of
https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git
synced 2026-05-04 01:38:52 +00:00
Version 1 of the LynxAstro.DewController.Switch driver
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user