// Get the NetworkService.
NetworkServiceInterface networkService =
dfpServices.get(session, NetworkServiceInterface.class);
// Make the test network.
Network network = networkService.makeTestNetwork();
System.out.printf(
"Test network with network code \"%s\" and display name \"%s\" created.\n"
+ "You may now sign in at https://www.google.com/dfp/main?networkCode=%s\n",
network.getNetworkCode(), network.getDisplayName(), network.getNetworkCode());
}