Sha256: 9bf6c337238ab4bd3657c2301d44646b2420867f3e732ca851f7291d0f298c35

Contents?: true

Size: 453 Bytes

Versions: 8

Compression:

Stored size: 453 Bytes

Contents

require 'test/unit'
require 'fox16'

include Fox

class TC_FXExtentf < Test::Unit::TestCase
  def test_lower_always_returns_same_instance
    e = FXExtentf.new(0, 1, 0, 1)
    assert_same e.lower, e.lower
  end
  
  def test_upper_always_returns_same_instance
    e = FXExtentf.new(0, 1, 0, 1)
    assert_same e.upper, e.upper
  end
  
  def test_index_always_returns_same_instance
    e = FXExtentf.new(0, 1, 0, 1)
    assert_same e[0], e[0]
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fxruby-1.6.20-x86-mingw32 test/TC_FXExtentf.rb
fxruby-1.6.20-x86-linux test/TC_FXExtentf.rb
fxruby-1.6.20 test/TC_FXExtentf.rb
fxruby-1.6.20-universal-darwin-10 test/TC_FXExtentf.rb
fxruby-1.6.19-x86-mingw32 tests/TC_FXExtentf.rb
fxruby-1.6.19-universal-darwin-9 tests/TC_FXExtentf.rb
fxruby-1.6.19-x86-mswin32-60 tests/TC_FXExtentf.rb
fxruby-1.6.19 tests/TC_FXExtentf.rb