I have two gen_servers that communicate using gen_tcp sockets.
The first gen_server exports a function, that when called builds (calling another function) a RFC 791 packet, connects to a socket where the other gen_server is listening for incoming connections, and sends the packet to it.
I tested this in the shell and it is working, but what would be the right tool/way to test such a code? Should I use eunit or or is there any other tool more suitable?
Moreover I would like to know what should I actually test? Only the sending part or also function for packet construction?