コード例 #1
0
            protected override void Context()
            {
                base.Context();

                GreetingWithNameCommand = A.Fake<NewGreetingWithNameCommand>();
                Sut = new MyWcfService(GreetingWithNameCommand);
            }
コード例 #2
0
            protected override void Context()
            {
                base.Context();

                GreetingWithNameCommand = A.Fake <NewGreetingWithNameCommand>();
                Sut = new MyWcfService(GreetingWithNameCommand);
            }
コード例 #3
0
 public MyWcfService(NewGreetingWithNameCommand greetingWithNameCommand)
 {
     this.greetingWithNameCommand = greetingWithNameCommand;
 }
コード例 #4
0
 public MyWcfService(NewGreetingWithNameCommand greetingWithNameCommand)
 {
     this.greetingWithNameCommand = greetingWithNameCommand;
 }