public void testGetDeviceFile_with_device_node_available() {
   tunInfo.setDeviceNodeAvailable(true);
   assertEquals(new File("/dev/tun"), tunInfo.getDeviceFile());
 }
 public void testIsDeviceNodeAvailable() {
   tunInfo.setDeviceNodeAvailable(true);
   assertTrue(tunInfo.isDeviceNodeAvailable());
 }