Skip to content

Commit

Permalink
Add more complex tuple test cases
Browse files Browse the repository at this point in the history
Refers to comment here - spekt#65 (comment)
  • Loading branch information
KonH committed Sep 24, 2020
1 parent c10938d commit 7854b0b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public class TestCaseNameParserTests
// Test with tuple arguments
[DataRow("z.a.b((0,1))", "z", "a", "b((0,1))")]
[DataRow("z.a.b((\"arg\",1))", "z", "a", "b((\"arg\",1))")]
[DataRow("z.a.b((0,1),(2,3))", "z", "a", "b((0,1),(2,3))")]
[DataRow("z.a.b((0,(0,1)),(0,1))", "z", "a", "b((0,(0,1)),(0,1))")]
public void Parse_ParsesAllParsableInputs_WithoutConsoleOutput(string testCaseName, string expectedNamespace, string expectedType, string expectedMethod)
{
var expected = new Tuple<string, string>(expectedType, expectedMethod);
Expand Down

0 comments on commit 7854b0b

Please sign in to comment.