Skip to content

Commit

Permalink
remove grabage from tests #2
Browse files Browse the repository at this point in the history
  • Loading branch information
pain64 committed Jan 14, 2025
1 parent 1da55c2 commit 1cb408b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 565 deletions.
120 changes: 0 additions & 120 deletions lib/src/test/java/net/truej/sql/compiler/DtoGeneratorTest.java

This file was deleted.

4 changes: 2 additions & 2 deletions lib/src/test/java/net/truej/sql/compiler/FloatArrayRW.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import java.sql.*;

public class FloatArrayRW extends GenericArrayRw<float[]> {
@Override
float[] convert(Array array) throws SQLException {

@Override float[] convert(Array array) throws SQLException {
var sa = (Float[]) array.getArray();
var result = new float[sa.length];
for (var i = 0; i < sa.length; i++)
Expand Down
16 changes: 0 additions & 16 deletions lib/src/test/java/net/truej/sql/compiler/GLangParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,4 @@ void assertLex(String input, Lexeme... lexemes) {
assertLex("a\\ \\ b", new Text("a b"), new End());
assertLex("a\\ \\ b", new Text("a "), new Text(" b"), new End());
}

@Test void parseDotLangTest() {
// Assertions.assertEquals(
// parseGroups(""), List.of()
// );
// Assertions.assertEquals(
// parseGroups("axxx"), List.of("axxx")
// );
// Assertions.assertEquals(
// parseGroups("axxx.y"), List.of("axxx", "y")
// );
// Assertions.assertEquals(
// parseGroups("axxx.b.c"), List.of("axxx", "b", "c")
// );
//DotLangParser.parseFields(":t json t.b\\.c.d");
}
}
210 changes: 0 additions & 210 deletions lib/src/test/java/net/truej/sql/compiler/MapperGeneratorTest.java

This file was deleted.

Loading

0 comments on commit 1cb408b

Please sign in to comment.