use of fixtures.lro.implementation.SubProductInner in project autorest.java by Azure.
the class LROsTests method putAsyncSubResource.
@Test
public void putAsyncSubResource() throws Exception {
SubProductInner subProduct = new SubProductInner();
SubProductInner response = client.lROs().putAsyncSubResource(subProduct);
Assert.assertEquals("Succeeded", response.provisioningState());
}
use of fixtures.lro.implementation.SubProductInner in project autorest.java by Azure.
the class LROsTests method putSubResource.
@Test
public void putSubResource() throws Exception {
SubProductInner subProduct = new SubProductInner();
SubProductInner response = client.lROs().putSubResource(subProduct);
Assert.assertEquals("Succeeded", response.provisioningState());
}
Aggregations