public void Match_should_be_false()
        {
            var locator = new ViewLocator();

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

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