using NUnit.Framework; using TINK.Repository.Exception; namespace TestTINKLib.Fixtures.ObjectTests.Repository.Exception { [TestFixture] public class TestNoGPSDataException { [Test] public void TestIsNotAtStation() { const string responseText = "Failure 2245: No GPS data, state change forbidden."; NoGPSDataException exception = null; Assert.That(() => NoGPSDataException.IsNoGPSData(responseText, out exception), Is.EqualTo(true)); } [Test] public void TestIsNotAtStation_InvalidNr() { const string responseText = "Failure 2248: No GPS data, state change forbidden."; NoGPSDataException exception = null; Assert.That(() => NoGPSDataException.IsNoGPSData(responseText, out exception), Is.EqualTo(false)); } } }