public void CreateArrestAlcoholDrug()
        {
            var arrestAlcoholDrugTestId = _arrestReportCommandService.CreateArrestAlcoholDrugTest(It.IsAny <Guid>(), MockObject.NewAlcoholDrugTest);

            arrestAlcoholDrugTestId.Should().NotBeEmpty();
            _reportsUnitOfWork.Verify(mock => mock.Commit(It.IsAny <ConcurrencyMode>()), Times.Once());
            _arrestReport.AlcoholDrugTests.Should().NotBeNullOrEmpty();
        }