Package org.mule.module.db.internal.result.statement

Examples of org.mule.module.db.internal.result.statement.UpdateCountResult


        when(statement.getUpdateCount()).thenReturn(updateCount);

        Object nextResult = iterator.next();

        assertThat(nextResult, is(instanceOf(UpdateCountResult.class)));
        UpdateCountResult updateCountResult = (UpdateCountResult) nextResult;
        assertThat(updateCountResult.getName(), equalTo("updateCount1"));
        assertThat((Integer) updateCountResult.getResult(), equalTo(updateCount));
    }
View Full Code Here

TOP

Related Classes of org.mule.module.db.internal.result.statement.UpdateCountResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.