Sha256: 7324fd19533d0b949f2546f06cb1b51009c1c00f6d81d84bc3e03672d283448e
Contents?: true
Size: 512 Bytes
Versions: 6
Compression:
Stored size: 512 Bytes
Contents
require 'test/unit' require 'testcase' require 'fox12' 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