1
0
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:
2021-02-17 19:48:23 +00:00
parent 7be023be2c
commit 7fe6d52363
65 changed files with 6381 additions and 0 deletions
@@ -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);
}
}
}