-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add void return combination support (#1335)
- Loading branch information
1 parent
c7261b4
commit 7880260
Showing
21 changed files
with
1,058 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/Verify.TUnit.Tests/CombinationTests.KeysWithInvalidPathChars.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
/: /, | ||
\: \ | ||
} |
20 changes: 20 additions & 0 deletions
20
src/Verify.TUnit.Tests/CombinationTests.MixedLengths.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
A , 100, True : a100True, | ||
A , 100, False: a100False, | ||
A , 2, True : a2True, | ||
A , 2, False: a2False, | ||
A , 30, True : a30True, | ||
A , 30, False: a30False, | ||
bcc , 100, True : bcc100True, | ||
bcc , 100, False: bcc100False, | ||
bcc , 2, True : bcc2True, | ||
bcc , 2, False: bcc2False, | ||
bcc , 30, True : bcc30True, | ||
bcc , 30, False: bcc30False, | ||
sssssC, 100, True : sssssc100True, | ||
sssssC, 100, False: sssssc100False, | ||
sssssC, 2, True : sssssc2True, | ||
sssssC, 2, False: sssssc2False, | ||
sssssC, 30, True : sssssc30True, | ||
sssssC, 30, False: sssssc30False | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
A: a, | ||
b: b, | ||
C: c | ||
} |
20 changes: 20 additions & 0 deletions
20
src/Verify.TUnit.Tests/CombinationTests.Three.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
A, 1, True : a1True, | ||
A, 1, False: a1False, | ||
A, 2, True : a2True, | ||
A, 2, False: a2False, | ||
A, 3, True : a3True, | ||
A, 3, False: a3False, | ||
b, 1, True : b1True, | ||
b, 1, False: b1False, | ||
b, 2, True : b2True, | ||
b, 2, False: b2False, | ||
b, 3, True : b3True, | ||
b, 3, False: b3False, | ||
C, 1, True : c1True, | ||
C, 1, False: c1False, | ||
C, 2, True : c2True, | ||
C, 2, False: c2False, | ||
C, 3, True : c3True, | ||
C, 3, False: c3False | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
A, 1: a1, | ||
A, 2: a2, | ||
A, 3: a3, | ||
b, 1: b1, | ||
b, 2: b2, | ||
b, 3: b3, | ||
C, 1: c1, | ||
C, 2: c2, | ||
C, 3: c3 | ||
} |
10 changes: 10 additions & 0 deletions
10
src/Verify.TUnit.Tests/CombinationTests.WithDontScrub.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
2020, 2, 12: 2020-02-12, | ||
2020, 2, 15: 2020-02-15, | ||
2020, 3, 12: 2020-03-12, | ||
2020, 3, 15: 2020-03-15, | ||
2022, 2, 12: 2022-02-12, | ||
2022, 2, 15: 2022-02-15, | ||
2022, 3, 12: 2022-03-12, | ||
2022, 3, 15: 2022-03-15 | ||
} |
20 changes: 20 additions & 0 deletions
20
src/Verify.TUnit.Tests/CombinationTests.WithException.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
A, 1, True : a1True, | ||
A, 1, False: a1False, | ||
A, 2, True : a2True, | ||
A, 2, False: a2False, | ||
A, 3, True : a3True, | ||
A, 3, False: a3False, | ||
b, 1, True : ArgumentException: B is not allowed., | ||
b, 1, False: ArgumentException: B is not allowed., | ||
b, 2, True : ArgumentException: B is not allowed., | ||
b, 2, False: ArgumentException: B is not allowed., | ||
b, 3, True : ArgumentException: B is not allowed., | ||
b, 3, False: ArgumentException: B is not allowed., | ||
C, 1, True : c1True, | ||
C, 1, False: c1False, | ||
C, 2, True : c2True, | ||
C, 2, False: c2False, | ||
C, 3, True : c3True, | ||
C, 3, False: c3False | ||
} |
10 changes: 10 additions & 0 deletions
10
src/Verify.TUnit.Tests/CombinationTests.WithScrubbed.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
2020, 2, 12: DateTime_1, | ||
2020, 2, 15: DateTime_2, | ||
2020, 3, 12: DateTime_3, | ||
2020, 3, 15: DateTime_4, | ||
2022, 2, 12: DateTime_5, | ||
2022, 2, 15: DateTime_6, | ||
2022, 3, 12: DateTime_7, | ||
2022, 3, 15: DateTime_8 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
1, Smith St : void, | ||
1, Wallace St: void, | ||
10, Smith St : void, | ||
10, Wallace St: void | ||
} |
6 changes: 6 additions & 0 deletions
6
src/Verify.Tests/CombinationTests.VoidValueTaskTest.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
1, Smith St : void, | ||
1, Wallace St: void, | ||
10, Smith St : void, | ||
10, Wallace St: void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace VerifyTests; | ||
|
||
public enum CombinationResultType | ||
{ | ||
Void, | ||
Value, | ||
Exception | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.