Skip to content

Commit b527aad

Browse files
authored
Update testreport.md
1 parent 0786d42 commit b527aad

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

testreport.md

+76
Original file line numberDiff line numberDiff line change
@@ -17130,3 +17130,79 @@ Expects Parse Error
1713017130
~~~
1713117131

1713217132

17133+
17134+
## token
17135+
17136+
17137+
### basic token - item
17138+
17139+
Input:
17140+
~~~
17141+
a_b-c.d3:f%00/*
17142+
~~~
17143+
17144+
Result:
17145+
~~~
17146+
a_b-c.d3:f%00/*
17147+
~~~
17148+
17149+
### token with capitals - item
17150+
17151+
Input:
17152+
~~~
17153+
fooBar
17154+
~~~
17155+
17156+
Result:
17157+
~~~
17158+
fooBar
17159+
~~~
17160+
17161+
### token starting with capitals - item
17162+
17163+
Input:
17164+
~~~
17165+
FooBar
17166+
~~~
17167+
17168+
Result:
17169+
~~~
17170+
FooBar
17171+
~~~
17172+
17173+
### basic token - list
17174+
17175+
Input:
17176+
~~~
17177+
a_b-c3/*
17178+
~~~
17179+
17180+
Result:
17181+
~~~
17182+
a_b-c3/*
17183+
~~~
17184+
17185+
### token with capitals - list
17186+
17187+
Input:
17188+
~~~
17189+
fooBar
17190+
~~~
17191+
17192+
Result:
17193+
~~~
17194+
fooBar
17195+
~~~
17196+
17197+
### token starting with capitals - list
17198+
17199+
Input:
17200+
~~~
17201+
FooBar
17202+
~~~
17203+
17204+
Result:
17205+
~~~
17206+
FooBar
17207+
~~~
17208+

0 commit comments

Comments
 (0)