Beispiel #1
0
        public async void GetAllGreetingsAsync_ShouldReturnAllGreetings()
        {
            var testGreetings = GetTestGreetings();
            var controller = new SimpleTestController(testGreetings);

            var result = await controller.GetAllGreetingsAsync() as List<Greeting>;
         
        }
Beispiel #2
0
 public SimpleTestController(SimpleTestController testGreetings)
 {
     this.testGreetings = testGreetings;
 }
 public SimpleTestController(SimpleTestController testGreetings)
 {
     this.testGreetings = testGreetings;
 }