public async void Test_Controller_Get() { var resultMany = await _controller.GetAsync(); var resultFail = await _controller.GetAsync(0); var resultOne = await _controller.GetAsync(1); Assert.NotNull(resultMany); Assert.NotNull(resultFail); Assert.NotNull(resultOne); }