Hi, I'm creating a test platform for a protocol project based on Apache MINA. In MINA when you receive packets the messageReceived()
method gets an Object. Ideally I'd like to use a JUnit method assertClass()
, however it doesn't exist. I'm playing around trying to work out what is the closest I can get. I'm trying to find something similar to instanceof
.
Currently I have:
public void assertClass(String msg, Class expected, Object given) {
if(!expected.isInstance(given)) Assert.fail(msg);
}
To call this:
assertClass("Packet type is correct", SomePacket.class, receivedPacket);
This works without issue, however in experimenting and playing with this my interest was peaked by the instanceof
operator.
if (receivedPacket instanceof SomePacket) { .. }
How is instanceof able to use SomePacket
to reference the object at hand? It's not an instance of an object, its not a class, what is it?! Once establishing what type SomePacket
is at that point is it possible to extend my assertClass()
to not have to include the SomePacket.class
argument, instead favouring SomePacket
?