Example #1
0
        public void MirandaGetWithNoBindingAndAConstructorTest()
        {
            EmptyClassWithDefaultConstructor emptyClass = context.Get <EmptyClassWithDefaultConstructor>();

            Assert.NotNull(emptyClass);
            Assert.AreEqual("EmptyClassWithDefaultConstructor", emptyClass.className);
        }
Example #2
0
        public void Empty_class_with_default_constructor ()
        {
            var t = new EmptyClassWithDefaultConstructor ();

            Assert.NotNull (t);
        }