Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/aweXpect.Core/Core/Constraints/ConstraintResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected ConstraintResult(ExpectationGrammars grammars)
/// <summary>
/// The <see cref="ExpectationGrammars" /> of the constraint result.
/// </summary>
public ExpectationGrammars Grammars { get; internal set; }
public ExpectationGrammars Grammars { get; protected set; }

/// <summary>
/// The outcome of the <see cref="ConstraintResult" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace aweXpect.Core.Constraints
protected ConstraintResult(aweXpect.Core.Constraints.FurtherProcessingStrategy furtherProcessingStrategy) { }
protected ConstraintResult(aweXpect.Core.ExpectationGrammars grammars) { }
public aweXpect.Core.Constraints.FurtherProcessingStrategy FurtherProcessingStrategy { get; protected set; }
public aweXpect.Core.ExpectationGrammars Grammars { get; }
public aweXpect.Core.ExpectationGrammars Grammars { get; protected set; }
public virtual aweXpect.Core.Constraints.Outcome Outcome { get; protected set; }
public abstract void AppendExpectation(System.Text.StringBuilder stringBuilder, string? indentation = null);
public abstract void AppendResult(System.Text.StringBuilder stringBuilder, string? indentation = null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace aweXpect.Core.Constraints
protected ConstraintResult(aweXpect.Core.Constraints.FurtherProcessingStrategy furtherProcessingStrategy) { }
protected ConstraintResult(aweXpect.Core.ExpectationGrammars grammars) { }
public aweXpect.Core.Constraints.FurtherProcessingStrategy FurtherProcessingStrategy { get; protected set; }
public aweXpect.Core.ExpectationGrammars Grammars { get; }
public aweXpect.Core.ExpectationGrammars Grammars { get; protected set; }
public virtual aweXpect.Core.Constraints.Outcome Outcome { get; protected set; }
public abstract void AppendExpectation(System.Text.StringBuilder stringBuilder, string? indentation = null);
public abstract void AppendResult(System.Text.StringBuilder stringBuilder, string? indentation = null);
Expand Down
Loading