Polish
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2016 the original author or authors.
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -42,8 +42,8 @@ import org.springframework.transaction.annotation.Transactional;
|
||||
* Using this annotation will disable full auto-configuration and instead apply only
|
||||
* configuration relevant to jOOQ tests.
|
||||
* <p>
|
||||
* By default, tests annotated with {@code @JooqTest} use the configured database. If
|
||||
* you want to replace any explicit or usually auto-configured DataSource by an embedded
|
||||
* By default, tests annotated with {@code @JooqTest} use the configured database. If you
|
||||
* want to replace any explicit or usually auto-configured DataSource by an embedded
|
||||
* in-memory database, the {@link AutoConfigureTestDatabase @AutoConfigureTestDatabase}
|
||||
* annotation can be used to override these settings.
|
||||
*
|
||||
|
||||
@@ -59,8 +59,8 @@ public class JooqTestIntegrationTests {
|
||||
|
||||
@Test
|
||||
public void testDSLContext() {
|
||||
assertThat(this.dsl.selectCount().from("INFORMATION_SCHEMA.TABLES")
|
||||
.fetchOne(0, Integer.class)).isGreaterThan(0);
|
||||
assertThat(this.dsl.selectCount().from("INFORMATION_SCHEMA.TABLES").fetchOne(0,
|
||||
Integer.class)).isGreaterThan(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user