public void Expect_identification_to_have_status(IdentificationResultType identificationResultType)
        {
            Assert_state(_identificationResult);

            Assert.Equal(identificationResultType, _identificationResult.ResultType);
        }
 public IdentificationResult(IdentificationResultType resultType, string resultCode = "")
 {
     ResultType = resultType;
     SetResultByIdentificationResultType(resultCode);
 }