Sha256: 1c597d5105b71970ddfc9a9af4174c25425b3567ed45be870124eaf19f804a4c

Contents?: true

Size: 1.11 KB

Versions: 30

Compression:

Stored size: 1.11 KB

Contents

require 'test/unit'

require 'fox16'

class TC_FXSize < Test::Unit::TestCase
  include Fox

  def setup
    @size1 = FXSize.new
    @size2 = FXSize.new(300, 200)
  end

  def test_copy
    assert_equal(@size1, FXSize.new(@size1))
    assert_equal(@size2, FXSize.new(@size2))
  end

  def test_equals
    @size1.w = 250
    @size1.h = 475
    sameSize1 = FXSize.new
    sameSize1.w = 250
    sameSize1.h = 475
    assert_equal(@size1, sameSize1)
    assert_equal(sameSize1, @size1)

    sameSize2 = FXSize.new(300, 200)
    assert_equal(@size2, sameSize2)
    assert_equal(sameSize2, @size2)
  end

  def test_uminus
    size1 = -(@size1)
    assert(size1.w == -(@size1.w) && size1.h == -(@size1.h))
    size2 = -(@size2)
    assert(size2.w == -(@size2.w) && size2.h == -(@size2.h))
  end

  def test_add
    assert_equal(FXSize.new(1, 2) + FXSize.new(3, 4), FXSize.new(4, 6))
  end

  def test_sub
    assert_equal(FXSize.new(4, 6) - FXSize.new(3, 4), FXSize.new(1, 2))
  end

  def test_mul
    assert_equal(FXSize.new(1, 2)*3, FXSize.new(3, 6))
  end

  def test_div
    assert_equal(FXSize.new(3, 6)/3, FXSize.new(1, 2))
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
fxruby-1.6.28-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.28-x64-mingw32 test/TC_FXSize.rb
fxruby-1.6.28 test/TC_FXSize.rb
fxruby-1.6.27-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.27-x64-mingw32 test/TC_FXSize.rb
fxruby-1.6.27 test/TC_FXSize.rb
fxruby-1.6.26-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.26 test/TC_FXSize.rb
fxruby-1.6.26.pre1-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.26.pre1 test/TC_FXSize.rb
fxruby-1.6.25-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.25 test/TC_FXSize.rb
fxruby-1.6.25.pre2-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.25.pre2 test/TC_FXSize.rb
fxruby-1.6.25.pre1-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.25.pre1 test/TC_FXSize.rb
fxruby-1.6.24-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.24 test/TC_FXSize.rb
fxruby-1.6.23-x86-mingw32 test/TC_FXSize.rb
fxruby-1.6.23 test/TC_FXSize.rb