Example #1
0
        public void CalculateAutocompleteCorrectly(string input, string expectedEnding)
        {
            var sut = new SyntaxChecker(input);

            Assert.Collection(sut.GetExpectedEndings(),
                              p1 => Assert.Equal(expectedEnding, p1));
        }