Skip to content

Commit 2fefc10

Browse files
committed
Readded IT
1 parent 516d26f commit 2fefc10

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package org.utplsql.maven.plugin;
2+
3+
import org.apache.maven.plugin.MojoExecutionException;
4+
import org.apache.maven.project.MavenProject;
5+
import org.junit.Test;
6+
7+
public class UtPLSQLMojoIT {
8+
9+
@Test
10+
public void execute() throws MojoExecutionException {
11+
UtPLSQLMojo utPLSQLMojo = new UtPLSQLMojo();
12+
utPLSQLMojo.project = new MavenProject();
13+
utPLSQLMojo.url = "jdbc:oracle:thin:@127.0.0.1:1521:XE";
14+
utPLSQLMojo.user = "UT3";
15+
utPLSQLMojo.password = "UT3";
16+
17+
utPLSQLMojo.execute();
18+
}
19+
}

0 commit comments

Comments
 (0)