예제 #1
0
 [InlineData("1:not-an-int")] // second field not an int
 public void TestInvalidFileId(string fileIdStr)
 {
     XAssert.IsFalse(FileId.TryParse(fileIdStr, out _));
     Assert.Throws <ArgumentException>(() => FileId.Parse(fileIdStr));
 }