use of io.kubernetes.client.models.V1Volume in project incubator-heron by apache.
the class VolumesTests method testNoVolume.
@Test
public void testNoVolume() {
final Config config = Config.newBuilder().build();
final V1Volume volume = Volumes.get().create(config);
Assert.assertNull(volume);
}
Aggregations