11 lines
195 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package file;
class TestFile extends haxe.unit.TestCase
{
public function testGetContentEmptyFile()
{
assertEquals('', sys.io.File.getContent('./file/empty.txt'));
}
}