Exemplo n.º 1
0
        public void TestAny()
        {
            Linq   linqMethod = new Linq();
            string input      = "0.26";

            Assert.Equal($"Articles cheaper than {input} have been sold.", linqMethod.Any(input));

            input = "0.25";
            Assert.Equal($"Articles cheaper than {input} have not been sold.", linqMethod.Any(input));
        }