diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-09-04 08:27:25 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-09-04 16:10:57 +0200 |
commit | 76a17e368664bc4a446155064ef6de94d55e6bd3 (patch) | |
tree | 89910f920d6761493d43b46f9388148e24a62022 /sonar-db | |
parent | e1aade556df764e2d289c87fafd0e5e2f356d5c9 (diff) | |
download | sonarqube-76a17e368664bc4a446155064ef6de94d55e6bd3.tar.gz sonarqube-76a17e368664bc4a446155064ef6de94d55e6bd3.zip |
Update DbTester javadoc
Diffstat (limited to 'sonar-db')
-rw-r--r-- | sonar-db/src/test/java/org/sonar/db/DbTester.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-db/src/test/java/org/sonar/db/DbTester.java b/sonar-db/src/test/java/org/sonar/db/DbTester.java index 80728e04727..5ed9728972c 100644 --- a/sonar-db/src/test/java/org/sonar/db/DbTester.java +++ b/sonar-db/src/test/java/org/sonar/db/DbTester.java @@ -59,9 +59,9 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.junit.Assert.fail; /** - * This class should be call using @ClassRule in order to create the schema once (ft @Rule is used + * This class should be call using @ClassRule in order to create the schema once (if @Rule is used * the schema will be recreated before each test). - * Data will be truncated each time you call prepareDbUnit(). + * Data will be truncated each time you call {@link #truncateTables()}. * <p> * File using {@link DbTester} must be annotated with {@link org.sonar.test.DbTests} so * that they can be executed on all supported DBs (Oracle, MySQL, ...). |