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

Version Path
fxruby-1.4.2 tests/TC_FXDirList.rb
fxruby-1.4.1 tests/TC_FXDirList.rb
fxruby-1.4.3 tests/TC_FXDirList.rb
fxruby-1.4.4 tests/TC_FXDirList.rb
fxruby-1.4.5 tests/TC_FXDirList.rb
fxruby-1.4.6 tests/TC_FXDirList.rb