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