Lines Matching refs:TestCase

155         [TestCase(1.0, "1")]
156 [TestCase(double.NaN, "'NaN'")]
157 [TestCase(double.PositiveInfinity, "'Infinity'")]
158 [TestCase(double.NegativeInfinity, "'-Infinity'")]
196 [TestCase("a\u17b4b", "a\\u17b4b")] // Explicit
197 [TestCase("a\u0601b", "a\\u0601b")] // Ranged
198 [TestCase("a\u0605b", "a\u0605b")] // Passthrough (note lack of double backslash...)
228 [TestCase("foo_bar", "fooBar")]
229 [TestCase("bananaBanana", "bananaBanana")]
230 [TestCase("BANANABanana", "bananaBanana")]
237 [TestCase(null, "{ }")]
238 [TestCase("x", "{ 'fooString': 'x' }")]
239 [TestCase("", "{ 'fooString': '' }")]
314 [TestCase("1970-01-01T00:00:00Z", 0)]
315 [TestCase("1970-01-01T00:00:00.000000001Z", 1)]
316 [TestCase("1970-01-01T00:00:00.000000010Z", 10)]
317 [TestCase("1970-01-01T00:00:00.000000100Z", 100)]
318 [TestCase("1970-01-01T00:00:00.000001Z", 1000)]
319 [TestCase("1970-01-01T00:00:00.000010Z", 10000)]
320 [TestCase("1970-01-01T00:00:00.000100Z", 100000)]
321 [TestCase("1970-01-01T00:00:00.001Z", 1000000)]
322 [TestCase("1970-01-01T00:00:00.010Z", 10000000)]
323 [TestCase("1970-01-01T00:00:00.100Z", 100000000)]
324 [TestCase("1970-01-01T00:00:00.120Z", 120000000)]
325 [TestCase("1970-01-01T00:00:00.123Z", 123000000)]
326 [TestCase("1970-01-01T00:00:00.123400Z", 123400000)]
327 [TestCase("1970-01-01T00:00:00.123450Z", 123450000)]
328 [TestCase("1970-01-01T00:00:00.123456Z", 123456000)]
329 [TestCase("1970-01-01T00:00:00.123456700Z", 123456700)]
330 [TestCase("1970-01-01T00:00:00.123456780Z", 123456780)]
331 [TestCase("1970-01-01T00:00:00.123456789Z", 123456789)]
348 [TestCase(-1, -1)] // Would be valid as duration
349 [TestCase(1, Timestamp.MaxNanos + 1)]
350 [TestCase(Timestamp.UnixSecondsAtBclMaxValue + 1, 0)]
351 [TestCase(Timestamp.UnixSecondsAtBclMinValue - 1, 0)]
366 [TestCase(0, 0, "0s")]
367 [TestCase(1, 0, "1s")]
368 [TestCase(-1, 0, "-1s")]
369 [TestCase(0, 1, "0.000000001s")]
370 [TestCase(0, 10, "0.000000010s")]
371 [TestCase(0, 100, "0.000000100s")]
372 [TestCase(0, 1000, "0.000001s")]
373 [TestCase(0, 10000, "0.000010s")]
374 [TestCase(0, 100000, "0.000100s")]
375 [TestCase(0, 1000000, "0.001s")]
376 [TestCase(0, 10000000, "0.010s")]
377 [TestCase(0, 100000000, "0.100s")]
378 [TestCase(0, 120000000, "0.120s")]
379 [TestCase(0, 123000000, "0.123s")]
380 [TestCase(0, 123400000, "0.123400s")]
381 [TestCase(0, 123450000, "0.123450s")]
382 [TestCase(0, 123456000, "0.123456s")]
383 [TestCase(0, 123456700, "0.123456700s")]
384 [TestCase(0, 123456780, "0.123456780s")]
385 [TestCase(0, 123456789, "0.123456789s")]
386 [TestCase(0, -100000000, "-0.100s")]
387 [TestCase(1, 100000000, "1.100s")]
388 [TestCase(-1, -100000000, "-1.100s")]
396 [TestCase(1, 2123456789)]
397 [TestCase(1, -100000000)]
430 [TestCase("foo__bar")]
431 [TestCase("foo_3_ar")]
432 [TestCase("fooBar")]