Codebase list ruby-fxruby / b8f67b76-5448-4022-b0ee-b9acdb4ce639/upstream test / TC_FXShell.rb
b8f67b76-5448-4022-b0ee-b9acdb4ce639/upstream

Tree @b8f67b76-5448-4022-b0ee-b9acdb4ce639/upstream (Download .tar.gz)

TC_FXShell.rb @b8f67b76-5448-4022-b0ee-b9acdb4ce639/upstreamraw · history · blame

require 'test/unit'

require 'fox16'

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

  def setup
    if FXApp.instance.nil?
      @app = FXApp.new('TC_FXShell', 'FXRuby')
      @app.init([])
    else
      @app = FXApp.instance
    end
    @mainWin = FXMainWindow.new(@app, 'TC_FXShell')
  end

  def test_nil_parent_raises_argument_error
    assert_raise(ArgumentError){ FXShell.new(nil, 0, 0, 0, 0, 0) }
  end

  def test_new
    # Free-floating
    shell1 = FXShell.new(@app, 0, 0, 0, 0, 0)
    assert_nil(shell1.owner)

    # Owned
    shell2 = FXShell.new(@mainWin, 0, 0, 0, 0, 0)
    assert_same(@mainWin, shell2.owner)
  end
end