Codebase list ruby-fxruby / 8c92b4fc-47dd-41e6-9b2a-451e389a318c/main test / TC_FXBMPIcon.rb
8c92b4fc-47dd-41e6-9b2a-451e389a318c/main

Tree @8c92b4fc-47dd-41e6-9b2a-451e389a318c/main (Download .tar.gz)

TC_FXBMPIcon.rb @8c92b4fc-47dd-41e6-9b2a-451e389a318c/mainraw · history · blame

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

class TC_FXBMPIcon < Fox::TestCase
  include Fox

  def setup
    super(self.class.name)
  end

  def test_fileExt
    assert_equal("bmp", FXBMPIcon.fileExt)
  end
end