Ejemplo n.º 1
0
        public void TestDontHaveRunningType()
        {
            RunningTypeService runningType = new RunningTypeService(Context);
            RunningType        result      = runningType.GetRunningType("02");

            Assert.AreEqual(null, result);
        }
Ejemplo n.º 2
0
        public void TestHaveRunningType()
        {
            RunningTypeService runningType = new RunningTypeService(Context);
            RunningType        result      = runningType.GetRunningType("01");

            Assert.AreEqual("01", result.Code);
        }