Description
Currently restarting the TestingServer involves:
server.stop()
server = new TestingServer(server.getPort(), server.getTempDirectory());
The underlying Zookeeper testing server that is contained within TestingServer supports a restart() method. It would be cleaner to expose this on the TestingServer interface, so a restart would simply involve:
server.restart()