Sha256: 04650b54af61055c208af7278475d37887f5ec13863d3b092bd4cb27837a4f63

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

require 'test/unit'

require 'fox12'

include Fox

class TC_FXRegion < Test::Unit::TestCase

  def setup
    @region = FXRegion.new(5, 5, 10, 10)
  end

  def test_construct_from_points
    points = [
               FXPoint.new(0, 0),
               FXPoint.new(0, 100),
               FXPoint.new(100, 100),
               FXPoint.new(0, 0)
             ]
    r1 = FXRegion.new(points, true)
    r2 = FXRegion.new(points, false)
    r3 = FXRegion.new(points)
  end

  def test_copy_constructor
    assert_equal(@region, FXRegion.new(@region))
  end

  def test_empty
    assert(!@region.empty?)
    empty_region = FXRegion.new(5, 5, 0, 0)
    assert(empty_region.empty?)
  end

  def test_containsPoint
    # Definitely out of bounds
    assert(!@region.contains?(2, 3))

    # Definitely in bounds    
    assert(@region.contains?(6, 6))

    # Check corners too
    assert(@region.contains?(5, 5))
    assert(@region.contains?(5, 14))
    assert(@region.contains?(14, 14))
    assert(@region.contains?(14, 5))
  end

  def test_containsRectangle
    assert(@region.contains?(2, 3, 15, 15)) # why doesn't this fail?
    assert(@region.contains?(5, 5, 10, 10))
    assert(@region.contains?(6, 6, 5, 5))
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.2.2 tests/TC_FXRegion.rb
fxruby-1.2.3 tests/TC_FXRegion.rb
fxruby-1.2.4 tests/TC_FXRegion.rb
fxruby-1.2.5 tests/TC_FXRegion.rb
fxruby-1.2.6 tests/TC_FXRegion.rb
fxruby-1.4.0 tests/TC_FXRegion.rb