コード例 #1
0
        public void TestDontHaveRunningType()
        {
            RunningTypeService runningType = new RunningTypeService(Context);
            RunningType        result      = runningType.GetRunningType("02");

            Assert.AreEqual(null, result);
        }
コード例 #2
0
        public void TestHaveRunningType()
        {
            RunningTypeService runningType = new RunningTypeService(Context);
            RunningType        result      = runningType.GetRunningType("01");

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