use of org.talend.components.azurestorage.queue.tazurestoragequeueinputloop.TAzureStorageQueueInputLoopProperties in project components by Talend.
the class AzureStorageQueueInputLoopReaderTestIT method setupBeforeClass.
@BeforeClass
public static void setupBeforeClass() throws Exception {
properties = new TAzureStorageQueueInputLoopProperties("test");
properties.setupProperties();
source = new AzureStorageQueueSource();
source.initialize(null, properties);
reader = (AzureStorageQueueInputLoopReader) source.createReader(null);
}
use of org.talend.components.azurestorage.queue.tazurestoragequeueinputloop.TAzureStorageQueueInputLoopProperties in project components by Talend.
the class AzureStorageQueueInputLoopReaderTest method setup.
@Before
public void setup() throws IOException {
properties = new TAzureStorageQueueInputLoopProperties(PROP_ + "QueueInputLoopReader");
properties.setupProperties();
properties.connection = getValidFakeConnection();
properties.queueName.setValue("some-queue-name");
}
Aggregations