Ejemplo n.º 1
0
        public void Smoke()
        {
            //arrange
            var matcher = new CppMatcher();

            //act/assert
            Assert.That(matcher, Is.Not.Null);
        }
Ejemplo n.º 2
0
        public void PleaseDoNotMathcDoNet()
        {
            //arrange
            var matcher = new CppMatcher();
            var input   = "Senior C# / .NET Developer";

            //act
            var result = matcher.Match(input);

            //post
            Assert.That(result, Is.False);
        }
Ejemplo n.º 3
0
        public void MatchCpp3()
        {
            //arrange
            var matcher = new CppMatcher();
            var input   = "required C++";

            //act
            var result = matcher.Match(input);

            //act/assert
            Assert.That(result, Is.True);
        }