Sha256: c9a0cc0f556628d8782ad98176a8622bd2c2e4e32b9e15802b939239b406df7b

Contents?: true

Size: 562 Bytes

Versions: 4

Compression:

Stored size: 562 Bytes

Contents

require 'test/unit'
require 'fox16'
require 'testcase'

class TC_FXScrollWindow < Fox::TestCase
  include Fox

  def setup
    super(self.class.name)
    @scrollWindow = FXScrollWindow.new(mainWindow)
  end

  def test_position_get
    pos = @scrollWindow.position
    assert_instance_of(Array, pos)
    assert_equal(2, pos.size)
    assert_kind_of(Integer, pos[0])
    assert_kind_of(Integer, pos[1])
  end
  
  def test_setPosition
    @scrollWindow.setPosition(0, 0)
  end

  def test_position_move_and_resize
    @scrollWindow.position(0, 0, 1, 1)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fxruby-1.6.22.pre2-x86-mingw32 test/TC_FXScrollWindow.rb
fxruby-1.6.22.pre2 test/TC_FXScrollWindow.rb
fxrubi-1.6.22.pre1-x86-mingw32 test/TC_FXScrollWindow.rb
fxrubi-1.6.22.pre1 test/TC_FXScrollWindow.rb