Skip to content
Snippets Groups Projects
TC_FXComboBox.rb 1.04 KiB
Newer Older
  • Learn to ignore specific revisions
  • require 'test/unit'
    require 'testcase'
    require 'fox16'
    
    include Fox
    
    class TC_FXComboBox < TestCase
      def setup
        super(self.class.name)
        @comboBox = FXComboBox.new(mainWindow, 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
    
      def test_first
        assert_instance_of(FXTextField, @comboBox.first)
      end
    
      def test_children
        assert_instance_of(FXTextField, @comboBox.children[0])
        assert_instance_of(FXMenuButton, @comboBox.children[1])
      end
      
      def test_set_current_to_none
        assert_nothing_raised do
          @comboBox.currentItem = -1
        end
      end
    
    end