Example #1
0
    private void SetTestCaseStatus()
    {
        var onlyBenignExceptions = InsertExceptionList.All(SkipException) && DeleteExceptionList.All(SkipException);

        Status = onlyBenignExceptions
            ? TestInsertDeleteCaseResultStatus.Success
            : TestInsertDeleteCaseResultStatus.Failure;
    }
Example #2
0
 public void AddInsertException(Exception e) => InsertExceptionList.Add(e);