We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The bones of inline snapshots landed in:
Things which we'll need to implement
toBe(LITERAL)
toBe_TODO()
1_000
1000
1_000_000
1000000
LongSelfie
BooleanSelfie
StringLiteral
"""
"foo\n" + "bar\n"
.toBe( 35 )
.toBe(35)
toBe
.toBe(27 + 8)
The text was updated successfully, but these errors were encountered:
@jknack something to keep in mind for Kotlin multiline string literals:
Sorry, something went wrong.
Complete! Huzzah!
SnapshotReader - Completed (#48)
eb3e99c
No branches or pull requests
The bones of inline snapshots landed in:
Things which we'll need to implement
toBe(LITERAL)
, not justtoBe_TODO()
ImplementtoBe(LITERAL)
, not justtoBe_TODO()
#491_000
not1000
,1_000_000
not1000000
Int Literal: encode long integers #70LongSelfie
Long Literal: Add long literal support #71BooleanSelfie
Literal: bool literal/selfie #72StringLiteral
single-line Inline string literals (single line) #56StringLiteral
multi-line"""
Add support for Kotlin multiline (and single line) literals #90"""
Add support for multiline java #87Java <15not necessary for 1.0"foo\n" + "bar\n"
, but we should support this last.toBe( 35 )
instead of.toBe(35)
, and also newlinestoBe
more flexible to (eventually) support multiline strings #86.toBe(27 + 8)
)toBe_TODO()
to get back on tracktoBe
more flexible to (eventually) support multiline strings #86The text was updated successfully, but these errors were encountered: