Sha256: 41a7451917886ba9a6681926de6a133c3ed054519659801d47d45a6a1c80da8b

Contents?: true

Size: 731 Bytes

Versions: 6

Compression:

Stored size: 731 Bytes

Contents

require 'test/unit'
require 'testcase'
require 'fox12'

include Fox

class TC_FXComboBox < TestCase
  def setup
    super(self.class.name)
    @comboBox = FXComboBox.new(mainWindow, 1, 1)
  end

  def test_moveItem
    @comboBox.appendItem("First")
    @comboBox.appendItem("Second")
    assert_nothing_raised {
      @comboBox.moveItem(0, 0)
      @comboBox.moveItem(0, 1)
      @comboBox.moveItem(1, 0)
      @comboBox.moveItem(1, 1)
    }
    assert_raises(IndexError) {
      @comboBox.moveItem(2, 0)
    }
    assert_raises(IndexError) {
      @comboBox.moveItem(-1, 0)
    }
    assert_raises(IndexError) {
      @comboBox.moveItem(0, 2)
    }
    assert_raises(IndexError) {
      @comboBox.moveItem(0, -1)
    }
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.2.3 tests/TC_FXComboBox.rb
fxruby-1.2.2 tests/TC_FXComboBox.rb
fxruby-1.2.4 tests/TC_FXComboBox.rb
fxruby-1.2.5 tests/TC_FXComboBox.rb
fxruby-1.2.6 tests/TC_FXComboBox.rb
fxruby-1.4.0 tests/TC_FXComboBox.rb