Skip to content

Commit

Permalink
Got no idea why this case test run success.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Dec 12, 2020
1 parent 46c4a9e commit 02636f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void TestSerialize(int index, TimeTagIndex.IndexState state, int? time, s
[TestCase("[-1,start]:1000", -1, TimeTagIndex.IndexState.Start, 1000)] // Should not check index is out of range in here.
[TestCase("[1,start]:-1000", 1, TimeTagIndex.IndexState.Start, -1000)] // Should not check if time is negative.
[TestCase("[1,start]:", 1, TimeTagIndex.IndexState.Start, null)]
[TestCase("", TimeTagIndex.IndexState.Start, 0, null)] // Test deal with format is not right below.
[TestCase("", 0, TimeTagIndex.IndexState.Start, null)] // Test deal with format is not right below.
[TestCase("[1,???]:", 0, TimeTagIndex.IndexState.Start, null)]
[TestCase("[1,]", 0, TimeTagIndex.IndexState.Start, null)]
[TestCase("[,start]", 0, TimeTagIndex.IndexState.Start, null)]
Expand Down

0 comments on commit 02636f8

Please sign in to comment.