Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Jun 23, 2024
1 parent d3ae93b commit 5ed3174
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ to enable generation of rules for data stores other than relational databases.

## Quick Start

- On Java, include the client api dependencies
- On Java, include the client API dependencies
[tdrules-client](https://central.sonatype.com/artifact/io.github.giis-uniovi/tdrules-client)
and either
[tdrules-client-oa](https://central.sonatype.com/artifact/io.github.giis-uniovi/tdrules-client-oa)
Expand All @@ -37,7 +37,7 @@ available in NuGet.

**Example:** To generate the FPC Rules for a query (`query`)
that executes against
an OpenApi schema specification inindicated by file or url (`spec`)
an OpenApi schema specification indicated by file or url (`spec`)
or a relational database that can be reached by an open JDBC Connection (`conn`),
you first get the data store schema model and then the rules model as follows:

Expand Down Expand Up @@ -85,10 +85,10 @@ See the general contribution policies and guidelines for *giis-uniovi* at
Modules currently available in this repo are:

- `tdrules-bom`: The bill of materials of all TdRules components.
- `tdrules-client`: Client api to generate FPC Rules and SQL Mutants.
- `tdrules-client`: Client API to generate FPC Rules and SQL Mutants.
- `tdrules-model`: Models of the FPC Rules, SQL Mutants and the data store schema.
- `tdrules-client-oa`: Client api to generate the data store schema from an OpenApi specification.
- `tdrules-client-rdb`: Client api to generate the data store schema from a live JDBC connection.
- `tdrules-client-oa`: Client API to generate the data store schema from an OpenApi specification.
- `tdrules-client-rdb`: Client API to generate the data store schema from a live JDBC connection.
- `tdrules-store-rdb`: Core component used to discover the schema of relational databases.
- `tdrules-store-shared`: Shared components for all data stores.
- `tdrules-store-loader`: Load test data through a REST API or a JDBC connection.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package test4giis.tdrules.store.loader.rdb;

import static org.junit.Assert.assertEquals;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
Expand Down Expand Up @@ -91,8 +89,4 @@ public String queryCsv(Connection dbt, String sql, String separator) throws SQLE
return s.toString();
}

public void assertEqualsIgnoreCase(String expected, String actual) {
assertEquals(expected.toLowerCase(), actual.toLowerCase());
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ public void tearDown() throws SQLException {
db.close();
}

/** nombre de catalogo.esquema tal como se precisan ver por los metadatos */
protected String catalogAndSchema(String dbName) {
return dbName + ".dbo"; // en sqlserver el catalogo es la bd y el esquema dbo
}

// constantes y manipulacion de campos/tipos, etc. dependientes de la base de datos
protected String getDate1() {
return "2008-09-01";
Expand Down

0 comments on commit 5ed3174

Please sign in to comment.