コード例 #1
0
        public void DummyAnother_CorrectInt_StatusTrue()
        {
            var result = ServiceInstance.DummyAnother(4);

            Assert.IsTrue(result);
        }
コード例 #2
0
        public void DummyAnother_WrongInt_StatusFalse()
        {
            var result = ServiceInstance.DummyAnother(9);

            Assert.IsFalse(result);
        }