Esempio n. 1
0
        public void Match_should_be_false()
        {
            var locator = new ViewLocator();

            locator.Match(1).Should().BeFalse();
            locator.Match(new Theme()).Should().BeFalse();
        }
Esempio n. 2
0
        public void Match_should_be_true()
        {
            var locator = new ViewLocator();

            locator.Match(new FakeVM()).Should().BeTrue();
        }