Esempio n. 1
0
        public void IsRazorFileName_UpperCaseRazorFileNamePassed_ReturnsTrue()
        {
            bool result = MvcProjectRazorFile.IsRazorFileName("test.CSHTML");

            Assert.IsTrue(result);
        }
Esempio n. 2
0
        public void IsRazorFileName_RazorFileNamePassed_ReturnsTrue()
        {
            bool result = MvcProjectRazorFile.IsRazorFileName("layout.cshtml");

            Assert.IsTrue(result);
        }