Sha256: e996ae6c0d9ae4687c7e9c45b34e7edb53335d248df89eb0e2d5d4d276522bfd
Contents?: true
Size: 537 Bytes
Versions: 20
Compression:
Stored size: 537 Bytes
Contents
require 'fox16' require 'test/unit' include Fox class TC_FXHiliteStyle < Test::Unit::TestCase def setup @style = FXHiliteStyle.new end def test_new_object_is_initialized assert_equal(0, @style.normalForeColor) assert_equal(0, @style.normalBackColor) assert_equal(0, @style.selectForeColor) assert_equal(0, @style.selectBackColor) assert_equal(0, @style.hiliteForeColor) assert_equal(0, @style.hiliteBackColor) assert_equal(0, @style.activeBackColor) assert_equal(0, @style.style) end end
Version data entries
20 entries across 20 versions & 1 rubygems