File tree Expand file tree Collapse file tree 6 files changed +1
-10
lines changed
main/java/org/utplsql/cli
test/java/org/utplsql/cli Expand file tree Collapse file tree 6 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 1
1
package org .utplsql .cli ;
2
2
3
3
import com .beust .jcommander .JCommander ;
4
- import com .beust .jcommander .Parameter ;
5
4
import com .beust .jcommander .ParameterException ;
6
5
7
6
public class Cli {
Original file line number Diff line number Diff line change 6
6
import java .io .IOException ;
7
7
import java .io .InputStream ;
8
8
import java .io .InputStreamReader ;
9
- import java .net .URISyntaxException ;
10
9
11
10
/** This class is getting updated automatically by the build process.
12
11
* Please do not update its constants manually cause they will be overwritten.
Original file line number Diff line number Diff line change 1
1
package org .utplsql .cli ;
2
2
3
3
import com .zaxxer .hikari .HikariDataSource ;
4
- import org .utplsql .api .EnvironmentVariableUtil ;
5
4
import org .utplsql .cli .datasource .TestedDataSourceProvider ;
6
5
7
6
import javax .sql .DataSource ;
Original file line number Diff line number Diff line change 3
3
4
4
import com .beust .jcommander .Parameter ;
5
5
import com .beust .jcommander .Parameters ;
6
- import org .utplsql .api .DBHelper ;
7
6
import org .utplsql .api .JavaApiVersionInfo ;
8
7
import org .utplsql .api .Version ;
9
- import org .utplsql .api .db .DatabaseInformation ;
10
8
import org .utplsql .api .db .DefaultDatabaseInformation ;
11
9
import org .utplsql .api .exception .UtPLSQLNotInstalledException ;
12
10
Original file line number Diff line number Diff line change 1
1
package org .utplsql .cli ;
2
2
3
3
import org .junit .jupiter .api .Test ;
4
- import org .utplsql .api .JavaApiVersionInfo ;
5
4
6
5
import static org .junit .jupiter .api .Assertions .assertTrue ;
7
6
Original file line number Diff line number Diff line change 4
4
import org .utplsql .cli .datasource .TestedDataSourceProvider ;
5
5
6
6
import javax .sql .DataSource ;
7
- import java .io .IOException ;
8
7
import java .sql .Connection ;
9
8
import java .sql .PreparedStatement ;
10
9
import java .sql .ResultSet ;
11
10
import java .sql .SQLException ;
12
11
13
- import static org .junit .jupiter .api .Assertions .assertEquals ;
14
- import static org .junit .jupiter .api .Assertions .assertNotNull ;
15
- import static org .junit .jupiter .api .Assertions .fail ;
12
+ import static org .junit .jupiter .api .Assertions .*;
16
13
17
14
class DataSourceProviderIT {
18
15
You can’t perform that action at this time.
0 commit comments