(expectedType, object interface{})
| 456 | } |
| 457 | |
| 458 | func isType(expectedType, object interface{}) bool { |
| 459 | return ObjectsAreEqual(reflect.TypeOf(object), reflect.TypeOf(expectedType)) |
| 460 | } |
| 461 | |
| 462 | // IsType asserts that the specified objects are of the same type. |
| 463 | // |
no test coverage detected