| 242 | end |
| 243 | |
| 244 | def test_set |
| 245 | p 'test_set' |
| 246 | val = Set.new([1, 2, 3]) |
| 247 | assert_equal(@client.testSet(val), val) |
| 248 | assert_kind_of(Set, @client.testSet(val)) |
| 249 | end |
| 250 | |
| 251 | def get_struct |
| 252 | Thrift::Test::Xtruct.new({'string_thing' => 'hi!', 'i32_thing' => 4 }) |
no test coverage detected