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

include Fox

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

  def test_fileExt
    assert_equal("xbm", FXXBMImage.fileExt)
  end
end