public void DummyAnother_CorrectInt_StatusTrue()
        {
            var result = ServiceInstance.DummyAnother(4);

            Assert.IsTrue(result);
        }
        public void DummyAnother_WrongInt_StatusFalse()
        {
            var result = ServiceInstance.DummyAnother(9);

            Assert.IsFalse(result);
        }