Example #1
0
        public void CheckValidInput_CheckIfMatchesExist_False()
        {
            //Arrange
            RepeatCounter newRepeatCounter = new RepeatCounter("this", "I'm walking to the cathedral with a cat.");

            //Act
            bool result = RepeatCounter.CheckValidInput();

            //Assert
            Assert.AreEqual(false, result);
        }