Initialization
Legend
| → | Has corresponding code |
| → | No direct match, but an alternative exists |
| → | No corresponding code |
| - | TODO |
| ( .. ) | Not localized |
| Example | Python pytest |
C++ GoogleTest |
Swift Testing |
Kotlin jUnit |
Bash bats |
|---|---|---|---|---|---|
| Assign Raw String | r' ... ' | - | - | → | - |
| String Interpolation (Variable) | f'{x}' | - | - | → | - |
| ( assign_empty_string ) | '' | "" | "" | → | → |
| ( assign_escaped_string ) | ' ... ' | - | " ... " | → | $'...' |
| ( assign_multiline_string ) | ''' ... ''' | - | - | - | - |
| ( escape_and_quote ) | \ | - | - | → | - |
| ( is_single_and_double_quote_differ ) | No | - | - | - | - |
| ( here_document ) | use '''...''' | - | - | → | - |
| ( string_interpolation_expression ) | f'{x}' | - | - | → | - |
| ( assign_string_with_newline ) | - | - | - | """ ... """ | - |