}
@Test
public void testPingMeFault() throws Exception {
Greeter greeter = getGreeter();
try {
greeter.pingMe();
fail("Should throw Exception!");
} catch (PingMeFault ex) {
FaultDetail detail = ex.getFaultInfo();
assertEquals((short)2, detail.getMajor());
assertEquals((short)1, detail.getMinor());