コード例 #1
0
ファイル: WarmupTests.cs プロジェクト: paaaattighe/swcguild
        public void EndsWithLy(string str, bool Expected)
        {
            //arrange instantiating objects
            StringWarmups WarmUp = new StringWarmups();

            //act Method
            bool result = WarmUp.EndsWithLy(str);

            //assert testing result
            Assert.AreEqual(Expected, result);
        }