Skip to content

Commit

Permalink
move test logic to test package
Browse files Browse the repository at this point in the history
  • Loading branch information
strongduanmu committed Dec 17, 2024
1 parent 368d98e commit f610446
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private static class TestCaseArgumentsProvider implements ArgumentsProvider {
@Override
public Stream<? extends Arguments> provideArguments(final ExtensionContext extensionContext) {
SQLBinderITSettings settings = extensionContext.getRequiredTestClass().getAnnotation(SQLBinderITSettings.class);
Preconditions.checkNotNull(settings, "Annotation InternalSQLParserITSettings is required.");
Preconditions.checkNotNull(settings, "Annotation SQLBinderITSettings is required.");
return getTestParameters(settings.value()).stream();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.shardingsphere.test.it.sql.binder.it.mysql;
package org.apache.shardingsphere.test.it.sql.binder.dialect.mysql;

import org.apache.shardingsphere.test.it.sql.binder.SQLBinderIT;
import org.apache.shardingsphere.test.it.sql.binder.SQLBinderITSettings;
Expand Down

0 comments on commit f610446

Please sign in to comment.