Skip to content
Snippets Groups Projects
TC_FXBMPImage.rb 219 B
Newer Older
require 'fox16'
require 'test/unit'
require 'testcase'

include Fox

class TC_FXBMPImage < TestCase
  def setup
    super(self.class.name)
  end

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