Files
DP44/DataPRO/StateMachine.Tests/.svn/pristine/32/32bf41b848472f9f4d28197e25687a8eab30adbd.svn-base

28 lines
630 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using DTS.DASLib.Service.StateMachine;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StateMachine.Tests
{
[TestFixture]
public class ConfigureShould
{
[Test]
public void StateSelector_Should_ReturnConfigureStart()
{
//Arrange
var sut = new Configure();
//Act
var dasState = sut.StateSelector();
// Assert
Assert.That(dasState.State, Is.EqualTo(State.ConfigureStart));
}
}
}