*/
public void test_ConstructorLjava_util_VectorLjava_util_Map() {
assertNotNull(impl);
try {
new SQLOutputImpl(null, new HashMap());
fail("should throw SQLException");
} catch (SQLException e) {
// expected
}
try {
new SQLOutputImpl(null, null);
fail("should throw SQLException");
} catch (SQLException e) {
// expected
}
try {
new SQLOutputImpl(new Vector(), null);
fail("should throw SQLException");
} catch (SQLException e) {
// expected
}
}