Sha256: bec5bd1f695566e26c7cba2f5c47b68550cccbf7c091357dcdb488ff0b75f08d
Contents?: true
Size: 512 Bytes
Versions: 6
Compression:
Stored size: 512 Bytes
Contents
require 'test/unit' require 'testcase' require 'fox14' include Fox class TC_FXDirList < TestCase def setup super(self.class.name) @dirList = FXDirList.new(mainWindow, 1) end def test_setCurrentFile file = "" @dirList.setCurrentFile(file) @dirList.setCurrentFile(file, true) end def test_setDirectory path = "" @dirList.setDirectory(path) @dirList.setDirectory(path, true) end def test_getPathnameItem path = "" @dirList.getPathnameItem(path) end end
Version data entries
6 entries across 6 versions & 1 rubygems