use of fixtures.lro.implementation.ProductInner in project autorest.java by Azure.
the class LROsCustomHeaderTests method putAsyncRetrySucceeded.
@Ignore("Pending headermap")
public void putAsyncRetrySucceeded() throws Exception {
ProductInner product = new ProductInner();
product.withLocation("West US");
ProductInner response = client.lROsCustomHeaders().putAsyncRetrySucceeded(product);
Assert.assertEquals("Succeeded", response.provisioningState());
}
Aggregations