File tree Expand file tree Collapse file tree 3 files changed +14
-17
lines changed
test/java/io/jenetics/jpx/jdbc Expand file tree Collapse file tree 3 files changed +14
-17
lines changed Original file line number Diff line number Diff line change 2626
2727plugins {
2828 `java- library`
29- idea
3029 `maven- publish`
31- alias(libs.plugins.lombok)
3230}
3331
3432description = " JPX - Java GPX (GPS) Library"
Original file line number Diff line number Diff line change 1717module io .jenetics .jpx .jdbc {
1818 requires transitive io .jenetics .jpx ;
1919 requires transitive io .jenetics .facilejdbc ;
20- requires lombok ;
2120
2221 exports io .jenetics .jpx .jdbc ;
2322
Original file line number Diff line number Diff line change @@ -74,19 +74,19 @@ public void insert() throws SQLException {
7474 });
7575 }
7676
77- @ Test (dependsOnMethods = "insert" )
78- public void select () throws SQLException {
79- final var select = Query .of ("SELECT * FROM link ORDER BY id" );
80-
81- H2DB .INSTANCE .transaction (conn -> {
82- final List <Stored <Long , Link >> links = select
83- .as (LinkAccess .PARSER .stored ("id" ).list (), conn );
84-
85- links .forEach (System .out ::println );
86-
87- assertThat (links .stream ().map (Stored ::value ).toList ())
88- .isEqualTo (LINKS );
89- });
90- }
77+ // @Test(dependsOnMethods = "insert")
78+ // public void select() throws SQLException {
79+ // final var select = Query.of("SELECT * FROM link ORDER BY id");
80+ //
81+ // H2DB.INSTANCE.transaction(conn -> {
82+ // final List<Stored<Long, Link>> links = select
83+ // .as(LinkAccess.PARSER.stored("id").list(), conn);
84+ //
85+ // links.forEach(System.out::println);
86+ //
87+ // assertThat(links.stream().map(Stored::value).toList())
88+ // .isEqualTo(LINKS);
89+ // });
90+ // }
9191
9292}
You can’t perform that action at this time.
0 commit comments