public void TestDontHaveRunningType() { RunningTypeService runningType = new RunningTypeService(Context); RunningType result = runningType.GetRunningType("02"); Assert.AreEqual(null, result); }
public void TestHaveRunningType() { RunningTypeService runningType = new RunningTypeService(Context); RunningType result = runningType.GetRunningType("01"); Assert.AreEqual("01", result.Code); }