2006-06-18 07:34:53 -04:00
|
|
|
require 'test/unit'
|
2006-06-19 07:00:12 -04:00
|
|
|
begin
|
|
|
|
require 'win32ole'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2006-06-18 07:34:53 -04:00
|
|
|
|
2006-06-19 07:00:12 -04:00
|
|
|
if defined?(WIN32OLE)
|
|
|
|
class TestWIN32OLE_PROPERTYPUTREF < Test::Unit::TestCase
|
|
|
|
def setup
|
|
|
|
begin
|
|
|
|
@sapi = WIN32OLE.new('SAPI.SpVoice')
|
2007-08-06 07:37:22 -04:00
|
|
|
@sv = @sapi.voice
|
2007-02-08 08:00:06 -05:00
|
|
|
rescue WIN32OLERuntimeError
|
2006-06-19 07:00:12 -04:00
|
|
|
@sapi = nil
|
|
|
|
end
|
2006-06-18 07:34:53 -04:00
|
|
|
end
|
2006-06-19 07:00:12 -04:00
|
|
|
def test_sapi
|
|
|
|
if @sapi
|
2007-08-06 07:37:22 -04:00
|
|
|
new_id = @sapi.getvoices.item(0).Id
|
|
|
|
@sapi.voice = @sapi.getvoices.item(0)
|
2006-06-19 07:00:12 -04:00
|
|
|
assert_equal(new_id, @sapi.voice.Id)
|
|
|
|
end
|
2006-06-18 07:34:53 -04:00
|
|
|
end
|
2007-08-06 07:37:22 -04:00
|
|
|
def teardown
|
|
|
|
if @sapi
|
|
|
|
@sapi.voice = @sv
|
|
|
|
end
|
|
|
|
end
|
2006-06-18 07:34:53 -04:00
|
|
|
end
|
|
|
|
end
|