Codebase list ruby-fxruby / 99f047d6-4f8f-4876-b361-15cb3a826a96/main test / TC_downcast.rb
99f047d6-4f8f-4876-b361-15cb3a826a96/main

Tree @99f047d6-4f8f-4876-b361-15cb3a826a96/main (Download .tar.gz)

TC_downcast.rb @99f047d6-4f8f-4876-b361-15cb3a826a96/mainraw · history · blame

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

class TC_downcast < Fox::TestCase
  include Fox

  def setup
    super(self.class.name)
  end
  def test_downcast
    fs = FXFileSelector.new(mainWindow)
    assert_kind_of(FXHorizontalFrame, fs.first)
  end
end