Esempio n. 1
0
            public TheExecuteMethodAlt()
            {
                var rule = new ToUpper(RootFake.NameProperty);
                var root = new RootFake();

                root.Name = "csla rocks";
                InitializeTest(rule, root);
            }
Esempio n. 2
0
            public TheExecuteMethodAlt(ApplicationContext applicationContext)
                : base(applicationContext)
            {
                var rule = new ToUpper(RootFake.NameProperty);
                var root = new RootFake();

                root.Name = "csla rocks";
                InitializeTest(rule, root);
            }