Skip to content

Commit 2a81478

Browse files
committed
Small update to exception suggesting to raise an issue if it is a false positive
1 parent f8989c6 commit 2a81478

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

TestStack.BDDfy/Processors/UnusedExampleException.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
public class UnusedExampleException : Exception
88
{
99
public UnusedExampleException(ExampleValue unusedValue) :
10-
base(string.Format("Example Column '{0}' is unused, all examples should be consumed by the test (have you misspelt a field or property?)", unusedValue.Header))
10+
base(string.Format("Example Column '{0}' is unused, all examples should be consumed by the test (have you misspelt a field or property?)\r\n\r\n"
11+
+ "If this is not the case, raise an issue at https://github.com/TestStack/TestStack.BDDfy/issues.", unusedValue.Header))
1112
{ }
1213

1314
protected UnusedExampleException(

0 commit comments

Comments
 (0)