Option Strict On
Option Explicit On

Imports System.ComponentModel

Namespace Nexamas.UI.Verification

    ''' <summary>
    ''' Summarizes the public product-proof outcome for one render verification scenario.
    ''' BaselineSeeded is intentionally separate from Passed: a newly created baseline is a review artifact,
    ''' not an approved visual match.
    ''' </summary>
    <EditorBrowsable(EditorBrowsableState.Advanced)>
    Public Enum MASRenderVerificationOutcome
        Passed = 0
        BaselineSeeded = 1
        Failed = 2
        Invalid = 3
    End Enum

End Namespace
