Sha256: afba912a6e0ce89152305c7f70c25ef17518891bbd9968c0171218fcfc41556e

Contents?: true

Size: 404 Bytes

Versions: 21

Compression:

Stored size: 404 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.

require_relative './lib/wxapp_runner'

class DialogTests < Test::Unit::TestCase

  class TestDialog < Wx::Dialog
    def initialize
      super()
    end
  end

  def test_dialog_inheritance
    dlg = TestDialog.new
    assert_kind_of(Wx::Dialog, dlg)
    assert_kind_of(Wx::Window, dlg)
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
wxruby3-1.5.1 tests/test_dialog.rb
wxruby3-1.5.0 tests/test_dialog.rb
wxruby3-1.4.2 tests/test_dialog.rb
wxruby3-1.4.1 tests/test_dialog.rb
wxruby3-1.4.0 tests/test_dialog.rb
wxruby3-1.3.1 tests/test_dialog.rb
wxruby3-1.3.0 tests/test_dialog.rb
wxruby3-1.2.1 tests/test_dialog.rb
wxruby3-1.2.0 tests/test_dialog.rb
wxruby3-1.1.2 tests/test_dialog.rb
wxruby3-1.1.1 tests/test_dialog.rb
wxruby3-1.1.0 tests/test_dialog.rb
wxruby3-1.0.1 tests/test_dialog.rb
wxruby3-0.9.8 tests/test_dialog.rb
wxruby3-0.9.7 tests/test_dialog.rb
wxruby3-0.9.5 tests/test_dialog.rb
wxruby3-0.9.4 tests/test_dialog.rb
wxruby3-0.9.3 tests/test_dialog.rb
wxruby3-0.9.2 tests/test_dialog.rb
wxruby3-0.9.1 tests/test_dialog.rb