Search in sources :

Example 1 with SubProductInner

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());
}
Also used : SubProductInner(fixtures.lro.implementation.SubProductInner) Test(org.junit.Test)

Example 2 with SubProductInner

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());
}
Also used : SubProductInner(fixtures.lro.implementation.SubProductInner) Test(org.junit.Test)

Aggregations

SubProductInner (fixtures.lro.implementation.SubProductInner)2 Test (org.junit.Test)2