windows-pr 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGES +444 -438
- data/MANIFEST +68 -65
- data/README +154 -153
- data/Rakefile +42 -37
- data/doc/conversion_guide.txt +37 -37
- data/lib/windows/clipboard.rb +61 -61
- data/lib/windows/com.rb +192 -192
- data/lib/windows/com/accessibility.rb +16 -16
- data/lib/windows/com/automation.rb +149 -149
- data/lib/windows/com/variant.rb +24 -24
- data/lib/windows/console.rb +114 -114
- data/lib/windows/debug.rb +35 -35
- data/lib/windows/device_io.rb +248 -248
- data/lib/windows/directory.rb +27 -27
- data/lib/windows/error.rb +504 -498
- data/lib/windows/eventlog.rb +80 -80
- data/lib/windows/file.rb +264 -264
- data/lib/windows/file_mapping.rb +25 -25
- data/lib/windows/filesystem.rb +15 -15
- data/lib/windows/gdi/bitmap.rb +65 -65
- data/lib/windows/gdi/device_context.rb +46 -46
- data/lib/windows/gdi/metafile.rb +40 -40
- data/lib/windows/gdi/painting_drawing.rb +115 -115
- data/lib/windows/handle.rb +23 -23
- data/lib/windows/library.rb +44 -44
- data/lib/windows/limits.rb +34 -34
- data/lib/windows/mailslot.rb +24 -24
- data/lib/windows/memory.rb +128 -128
- data/lib/windows/msvcrt/buffer.rb +75 -75
- data/lib/windows/msvcrt/directory.rb +31 -31
- data/lib/windows/msvcrt/file.rb +47 -47
- data/lib/windows/msvcrt/io.rb +73 -73
- data/lib/windows/msvcrt/string.rb +182 -182
- data/lib/windows/msvcrt/time.rb +169 -169
- data/lib/windows/national.rb +580 -580
- data/lib/windows/network/management.rb +525 -525
- data/lib/windows/network/snmp.rb +92 -92
- data/lib/windows/network/winsock.rb +128 -128
- data/lib/windows/nio.rb +50 -50
- data/lib/windows/ntfs/winternl.rb +117 -117
- data/lib/windows/path.rb +143 -143
- data/lib/windows/pipe.rb +42 -42
- data/lib/windows/process.rb +176 -176
- data/lib/windows/registry.rb +171 -171
- data/lib/windows/security.rb +479 -479
- data/lib/windows/security/authentication.rb +32 -32
- data/lib/windows/security/sspi.rb +153 -0
- data/lib/windows/service.rb +142 -142
- data/lib/windows/shell.rb +171 -171
- data/lib/windows/socket.rb +86 -86
- data/lib/windows/sound.rb +39 -39
- data/lib/windows/synchronize.rb +133 -133
- data/lib/windows/system_info.rb +229 -229
- data/lib/windows/thread.rb +64 -64
- data/lib/windows/time.rb +48 -48
- data/lib/windows/tool_helper.rb +36 -36
- data/lib/windows/unicode.rb +155 -155
- data/lib/windows/volume.rb +61 -61
- data/lib/windows/window.rb +81 -81
- data/lib/windows/window/classes.rb +59 -59
- data/lib/windows/window/dialog.rb +91 -91
- data/lib/windows/window/menu.rb +102 -102
- data/lib/windows/window/message.rb +297 -297
- data/lib/windows/window/properties.rb +20 -20
- data/lib/windows/window/timer.rb +19 -19
- data/lib/windows/wsa.rb +102 -102
- data/test/tc_clipboard.rb +41 -41
- data/test/tc_com.rb +32 -32
- data/test/tc_com_automation.rb +15 -15
- data/test/tc_console.rb +108 -108
- data/test/tc_debug.rb +48 -48
- data/test/tc_device_io.rb +29 -29
- data/test/tc_directory.rb +25 -25
- data/test/tc_error.rb +38 -38
- data/test/tc_eventlog.rb +58 -58
- data/test/tc_file.rb +67 -67
- data/test/tc_file_mapping.rb +38 -38
- data/test/tc_filesystem.rb +27 -27
- data/test/tc_gdi_bitmap.rb +25 -25
- data/test/tc_gdi_metafile.rb +23 -23
- data/test/tc_handle.rb +36 -36
- data/test/tc_library.rb +37 -37
- data/test/tc_limits.rb +34 -34
- data/test/tc_mailslot.rb +22 -22
- data/test/tc_memory.rb +44 -44
- data/test/tc_msvcrt_buffer.rb +63 -63
- data/test/tc_msvcrt_directory.rb +96 -96
- data/test/tc_msvcrt_file.rb +80 -80
- data/test/tc_msvcrt_io.rb +48 -48
- data/test/tc_msvcrt_string.rb +94 -94
- data/test/tc_msvcrt_time.rb +19 -19
- data/test/tc_national.rb +38 -38
- data/test/tc_network_management.rb +32 -32
- data/test/tc_network_snmp.rb +31 -31
- data/test/tc_network_winsock.rb +34 -34
- data/test/tc_nio.rb +32 -32
- data/test/tc_ntfs_winternl.rb +48 -48
- data/test/tc_path.rb +90 -90
- data/test/tc_pipe.rb +53 -53
- data/test/tc_process.rb +24 -24
- data/test/tc_registry.rb +29 -29
- data/test/tc_security.rb +104 -104
- data/test/tc_security_authentication.rb +34 -34
- data/test/tc_security_sspi.rb +23 -0
- data/test/tc_service.rb +57 -57
- data/test/tc_shell.rb +34 -34
- data/test/tc_socket.rb +20 -20
- data/test/tc_sound.rb +37 -37
- data/test/tc_synchronize.rb +75 -75
- data/test/tc_system_info.rb +33 -33
- data/test/tc_thread.rb +29 -29
- data/test/tc_time.rb +32 -32
- data/test/tc_tool_helper.rb +29 -29
- data/test/tc_unicode.rb +83 -83
- data/test/tc_volume.rb +47 -47
- data/test/tc_window.rb +45 -45
- data/test/tc_window_classes.rb +33 -33
- data/test/tc_window_dialog.rb +33 -33
- data/test/tc_window_menu.rb +29 -29
- data/test/tc_window_message.rb +33 -33
- data/test/tc_window_properties.rb +29 -29
- data/test/tc_window_timer.rb +29 -29
- data/test/tc_wsa.rb +19 -19
- data/windows-pr.gemspec +33 -34
- metadata +31 -32
data/test/tc_window.rb
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowFoo
|
|
10
|
-
include Windows::Window
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(0, WindowFoo::SW_HIDE)
|
|
20
|
-
assert_equal(1, WindowFoo::SW_SHOWNORMAL)
|
|
21
|
-
assert_equal(1, WindowFoo::SW_NORMAL)
|
|
22
|
-
assert_equal(2, WindowFoo::SW_SHOWMINIMIZED)
|
|
23
|
-
assert_equal(3, WindowFoo::SW_SHOWMAXIMIZED)
|
|
24
|
-
assert_equal(3, WindowFoo::SW_MAXIMIZE)
|
|
25
|
-
assert_equal(4, WindowFoo::SW_SHOWNOACTIVATE)
|
|
26
|
-
assert_equal(5, WindowFoo::SW_SHOW)
|
|
27
|
-
assert_equal(6, WindowFoo::SW_MINIMIZE)
|
|
28
|
-
assert_equal(7, WindowFoo::SW_SHOWMINNOACTIVE)
|
|
29
|
-
assert_equal(8, WindowFoo::SW_SHOWNA)
|
|
30
|
-
assert_equal(9, WindowFoo::SW_RESTORE)
|
|
31
|
-
assert_equal(10, WindowFoo::SW_SHOWDEFAULT)
|
|
32
|
-
assert_equal(11, WindowFoo::SW_FORCEMINIMIZE)
|
|
33
|
-
assert_equal(11, WindowFoo::SW_MAX)
|
|
34
|
-
end
|
|
35
|
-
|
|
36
|
-
def test_method_constants
|
|
37
|
-
assert_not_nil(WindowFoo::GetClientRect)
|
|
38
|
-
assert_not_nil(WindowFoo::GetForegroundWindow)
|
|
39
|
-
assert_not_nil(WindowFoo::GetWindowRect)
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
def teardown
|
|
43
|
-
@foo = nil
|
|
44
|
-
end
|
|
45
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowFoo
|
|
10
|
+
include Windows::Window
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(0, WindowFoo::SW_HIDE)
|
|
20
|
+
assert_equal(1, WindowFoo::SW_SHOWNORMAL)
|
|
21
|
+
assert_equal(1, WindowFoo::SW_NORMAL)
|
|
22
|
+
assert_equal(2, WindowFoo::SW_SHOWMINIMIZED)
|
|
23
|
+
assert_equal(3, WindowFoo::SW_SHOWMAXIMIZED)
|
|
24
|
+
assert_equal(3, WindowFoo::SW_MAXIMIZE)
|
|
25
|
+
assert_equal(4, WindowFoo::SW_SHOWNOACTIVATE)
|
|
26
|
+
assert_equal(5, WindowFoo::SW_SHOW)
|
|
27
|
+
assert_equal(6, WindowFoo::SW_MINIMIZE)
|
|
28
|
+
assert_equal(7, WindowFoo::SW_SHOWMINNOACTIVE)
|
|
29
|
+
assert_equal(8, WindowFoo::SW_SHOWNA)
|
|
30
|
+
assert_equal(9, WindowFoo::SW_RESTORE)
|
|
31
|
+
assert_equal(10, WindowFoo::SW_SHOWDEFAULT)
|
|
32
|
+
assert_equal(11, WindowFoo::SW_FORCEMINIMIZE)
|
|
33
|
+
assert_equal(11, WindowFoo::SW_MAX)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def test_method_constants
|
|
37
|
+
assert_not_nil(WindowFoo::GetClientRect)
|
|
38
|
+
assert_not_nil(WindowFoo::GetForegroundWindow)
|
|
39
|
+
assert_not_nil(WindowFoo::GetWindowRect)
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def teardown
|
|
43
|
+
@foo = nil
|
|
44
|
+
end
|
|
45
|
+
end
|
data/test/tc_window_classes.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_classes.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Classes module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/classes'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowClassesFoo
|
|
10
|
-
include Windows::Window::Classes
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Classes < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowClassesFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(-8, WindowClassesFoo::GCL_MENUNAME)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowClassesFoo::GetClassInfo)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :GetClassInfo)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_classes.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Classes module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/classes'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowClassesFoo
|
|
10
|
+
include Windows::Window::Classes
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Classes < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowClassesFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(-8, WindowClassesFoo::GCL_MENUNAME)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowClassesFoo::GetClassInfo)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :GetClassInfo)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
data/test/tc_window_dialog.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_dialog.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Dialog module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/dialog'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowDialogFoo
|
|
10
|
-
include Windows::Window::Dialog
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Dialog < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowDialogFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(0, WindowDialogFoo::MB_OK)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowDialogFoo::MessageBox)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :MessageBox)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_dialog.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Dialog module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/dialog'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowDialogFoo
|
|
10
|
+
include Windows::Window::Dialog
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Dialog < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowDialogFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(0, WindowDialogFoo::MB_OK)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowDialogFoo::MessageBox)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :MessageBox)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
data/test/tc_window_menu.rb
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_menu.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Menu module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/menu'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowMenuFoo
|
|
10
|
-
include Windows::Window::Menu
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Menu < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowMenuFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(0, WindowMenuFoo::MF_INSERT)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowMenuFoo::AppendMenu)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_menu.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Menu module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/menu'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowMenuFoo
|
|
10
|
+
include Windows::Window::Menu
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Menu < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowMenuFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(0, WindowMenuFoo::MF_INSERT)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowMenuFoo::AppendMenu)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|
data/test/tc_window_message.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_message.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Message module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/message'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowMessageFoo
|
|
10
|
-
include Windows::Window::Message
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Message < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowMessageFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(5, WindowMessageFoo::WM_SIZE)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowMessageFoo::PostMessage)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :PostMessage)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_message.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Message module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/message'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowMessageFoo
|
|
10
|
+
include Windows::Window::Message
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Message < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowMessageFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(5, WindowMessageFoo::WM_SIZE)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowMessageFoo::PostMessage)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :PostMessage)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_properties.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Properties module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/properties'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowPropertiesFoo
|
|
10
|
-
include Windows::Window::Properties
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Properties < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowPropertiesFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_method_constants
|
|
19
|
-
assert_not_nil(WindowPropertiesFoo::EnumProps)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_mixin
|
|
23
|
-
assert_respond_to(@foo, :EnumProps)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_properties.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Properties module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/properties'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowPropertiesFoo
|
|
10
|
+
include Windows::Window::Properties
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Properties < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowPropertiesFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_method_constants
|
|
19
|
+
assert_not_nil(WindowPropertiesFoo::EnumProps)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_mixin
|
|
23
|
+
assert_respond_to(@foo, :EnumProps)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|
data/test/tc_window_timer.rb
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_timer.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Timer module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/timer'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowTimerFoo
|
|
10
|
-
include Windows::Window::Timer
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Timer < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowTimerFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_method_constants
|
|
19
|
-
assert_not_nil(WindowTimerFoo::KillTimer)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_mixin
|
|
23
|
-
assert_respond_to(@foo, :KillTimer)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_timer.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Timer module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/timer'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowTimerFoo
|
|
10
|
+
include Windows::Window::Timer
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Timer < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowTimerFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_method_constants
|
|
19
|
+
assert_not_nil(WindowTimerFoo::KillTimer)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_mixin
|
|
23
|
+
assert_respond_to(@foo, :KillTimer)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|