============================================================================ :: Entry Point
| 86 | //============================================================================ |
| 87 | // :: Entry Point |
| 88 | int main() |
| 89 | { |
| 90 | const char* const file = "/tmp/file"; |
| 91 | createFile(file, "This is some content"); |
| 92 | getSize(file); |
| 93 | resize(file, 32); |
| 94 | resize(file, 17); |
| 95 | resize(file, 0); |
| 96 | |
| 97 | // This throws a JS exception. |
| 98 | resize(file, 32); |
| 99 | return 0; |
| 100 | } |
nothing calls this directly
no test coverage detected