Esempio n. 1
0
        public void GenericClass_Constructor_2Params_data_IsNull_Throws()
        {
            System.Collections.Generic.List <AutoConstructorTest.Examples.ISomeInterface> data = null;
            var s = String.Empty;

            var sut = new AutoConstructorTest.Examples.GenericClass(data, s);
        }
Esempio n. 2
0
        public void GenericClass_Constructor_2Params_s_IsNull_Throws()
        {
            var data = new Mock <System.Collections.Generic.List <AutoConstructorTest.Examples.ISomeInterface> >().Object;

            System.String s = null;

            var sut = new AutoConstructorTest.Examples.GenericClass(data, s);
        }