public async Task CreateInspectionTypeAsync_NewDto_ReturnsRegisteredDto()
    {
        var target = new CategoryRepository(_context, _mapper);
        var dto    = new InspectionTypeDto
        {
            Description = "type"
        };
        var actualDto = await target.CreateInspectionTypeAsync(dto);

        Assert.NotEqual(0, actualDto.InspectionTypeId);
        Assert.Equal("type", actualDto.Description);

        var actualEntity = _context.InspectionTypes.First();

        Assert.NotEqual(0, actualEntity.InspectionTypeId);
        Assert.Equal("type", actualEntity.Description);
    }