public async Task GetTestResultsByTestBaseIdAsync_ReturnsAllElements()
        {
            var act = await _service.GetTestResultsByTestBaseIdAsync(1);

            act.Count().Should().Be(1);
        }
        public async Task <IActionResult> ShowResults(int id)
        {
            var model = await _testResultService.GetTestResultsByTestBaseIdAsync(id);

            return(View(model));
        }