Class: VertxUnit::TestSuiteReport
- Inherits:
-
Object
- Object
- VertxUnit::TestSuiteReport
show all
- Includes:
- Vertx::ReadStream
- Defined in:
- /Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb
Overview
The test suite reports is basically a stream of events reporting the test suite execution.
Constant Summary
- @@j_api_type =
Object.new
Class Method Summary
(collapse)
Instance Method Summary
(collapse)
Class Method Details
+ (Boolean) accept?(obj)
20
21
22
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 20
def @@j_api_type.accept?(obj)
obj.class == TestSuiteReport
end
|
+ (Object) j_api_type
29
30
31
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 29
def self.j_api_type
@@j_api_type
end
|
+ (Object) j_class
32
33
34
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 32
def self.j_class
Java::IoVertxExtUnitReport::TestSuiteReport.java_class
end
|
+ (Object) unwrap(obj)
26
27
28
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 26
def @@j_api_type.unwrap(obj)
obj.j_del
end
|
+ (Object) wrap(obj)
23
24
25
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 23
def @@j_api_type.wrap(obj)
TestSuiteReport.new(obj)
end
|
Instance Method Details
- (self) end_handler { ... }
83
84
85
86
87
88
89
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 83
def end_handler
if block_given?
@j_del.java_method(:endHandler, [Java::IoVertxCore::Handler.java_class]).call(Proc.new { yield })
return self
end
raise ArgumentError, "Invalid arguments when calling end_handler()"
end
|
- (self) exception_handler { ... }
Set an exception handler, the exception handler reports the test suite errors, it can be called mulitple
times before the test ends.
49
50
51
52
53
54
55
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 49
def exception_handler
if block_given?
@j_del.java_method(:exceptionHandler, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |event| yield(::Vertx::Util::Utils.from_throwable(event)) }))
return self
end
raise ArgumentError, "Invalid arguments when calling exception_handler()"
end
|
- (self) handler { ... }
58
59
60
61
62
63
64
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 58
def handler
if block_given?
@j_del.java_method(:handler, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |event| yield(::Vertx::Util::Utils.safe_create(event,::VertxUnit::TestCaseReport)) }))
return self
end
raise ArgumentError, "Invalid arguments when calling handler()"
end
|
- (String) name
Returns the test suite name
36
37
38
39
40
41
42
43
44
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 36
def name
if !block_given?
if @cached_name != nil
return @cached_name
end
return @cached_name = @j_del.java_method(:name, []).call()
end
raise ArgumentError, "Invalid arguments when calling name()"
end
|
- (self) pause
66
67
68
69
70
71
72
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 66
def pause
if !block_given?
@j_del.java_method(:pause, []).call()
return self
end
raise ArgumentError, "Invalid arguments when calling pause()"
end
|
- (self) resume
74
75
76
77
78
79
80
|
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-unit/test_suite_report.rb', line 74
def resume
if !block_given?
@j_del.java_method(:resume, []).call()
return self
end
raise ArgumentError, "Invalid arguments when calling resume()"
end
|