Exemplo n.º 1
0
        public AbstractStrategyTest()
        {
            this.runSyntaxBuilder      = new Mock <ISyntaxBuilder <IExtension> >();
            this.shutdownSyntaxBuilder = new Mock <ISyntaxBuilder <IExtension> >();

            this.testee = new TestableAbstractStrategy(this.runSyntaxBuilder.Object, this.shutdownSyntaxBuilder.Object);
        }
Exemplo n.º 2
0
        public AbstractStrategyTest()
        {
            this.runSyntaxBuilder      = A.Fake <ISyntaxBuilder <IExtension> >();
            this.shutdownSyntaxBuilder = A.Fake <ISyntaxBuilder <IExtension> >();

            this.testee = new TestableAbstractStrategy(this.runSyntaxBuilder, this.shutdownSyntaxBuilder);
        }