*
char[] buf; if (!IOManager.readFileToBuffer("test_file.txt", buf)) assert(0, "Operation failed at reading!"); assert( buf == "Hello,\r\nDear engine!" || buf == "Hello,\nDear engine!", "Buffer does not containt the same data as file" );
See Implementation
*