public DefinitionBuilderFacts()
        {
            var factory    = new DefaultFactory();
            var definition = new Definition <TestQuestion, string, int, string>();

            this.testee = new DefinitionBuilder <TestQuestion, string, int, string>(definition, factory);
        }
예제 #2
0
        public DefinitionBuilderTest()
        {
            this.factory = new DefaultFactory();

            this.definition = new Definition <TestQuestion, string, int, string>();

            this.testee = new DefinitionBuilder <TestQuestion, string, int, string>(this.definition, this.factory);
        }