Codebase list ruby-fxruby / 3ac7152a-ab2f-4628-b250-ba7cef029b84/upstream/1.6.45+git20230116.1.57f414d test / TC_FXFoldingList.rb
3ac7152a-ab2f-4628-b250-ba7cef029b84/upstream/1.6.45+git20230116.1.57f414d

Tree @3ac7152a-ab2f-4628-b250-ba7cef029b84/upstream/1.6.45+git20230116.1.57f414d (Download .tar.gz)

TC_FXFoldingList.rb @3ac7152a-ab2f-4628-b250-ba7cef029b84/upstream/1.6.45+git20230116.1.57f414draw · history · blame

require 'test/unit'
require 'testcase'
require 'fox16'

class TC_FXFoldingList < Fox::TestCase
  include Fox


  def setup
    super(self.class.name)
    @foldingList = FXFoldingList.new(mainWindow)
  end

  def test_each_for_empty_list
    count = 0
    @foldingList.each { |item| count += 1 }
    assert_equal(0, count, "count for empty list should be zero")
  end

  def test_each
    @foldingList.appendItem(nil, "1")
    @foldingList.appendItem(nil, "2")
    @foldingList.appendItem(nil, "3")
    @foldingList.appendItem(nil, "4")
    @foldingList.appendItem(nil, "5")
    count = 0
    @foldingList.each { |item| count += 1 }
    assert_equal(5, count, "count didn't match expected number of items")
  end

end