2025-01-22 16:18:30 +01:00

11 lines
195 B
Haxe

package file;
class TestFile extends haxe.unit.TestCase
{
public function testGetContentEmptyFile()
{
assertEquals('', sys.io.File.getContent('./file/empty.txt'));
}
}