method

test_event_interface

v1_8_6_287 - Show latest stable - Class: TestOLEMETHOD
test_event_interface()
public

No documentation available.

# File ext/win32ole/tests/testOLEMETHOD.rb, line 64
  def test_event_interface
    m = WIN32OLE_METHOD.new(@excel_app, 'WorkbookOpen')
    assert_equal('AppEvents', m.event_interface)
    m = WIN32OLE_METHOD.new(@excel_app, 'ActiveCell')
    assert_nil(m.event_interface)
  end