Skip to content

Commit fefd71f

Browse files
committed
Unify jdbc tests
1 parent d69f077 commit fefd71f

File tree

25 files changed

+3179
-2948
lines changed

25 files changed

+3179
-2948
lines changed

instrumentation/jdbc/javaagent/build.gradle.kts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,12 @@ dependencies {
2020
compileOnly("com.google.auto.value:auto-value-annotations")
2121
annotationProcessor("com.google.auto.value:auto-value")
2222

23-
// jdbc unit testing
2423
testLibrary("com.h2database:h2:1.3.169")
25-
// first version jdk 1.6 compatible
26-
testLibrary("org.apache.derby:derby:10.6.1.0")
24+
testLibrary("org.apache.derby:derby:10.6.1.0") // first version jdk 1.6 compatible
2725
testLibrary("org.hsqldb:hsqldb:2.0.0")
2826

2927
testLibrary("org.apache.tomcat:tomcat-jdbc:7.0.19")
30-
// tomcat needs this to run
31-
testLibrary("org.apache.tomcat:tomcat-juli:7.0.19")
28+
testLibrary("org.apache.tomcat:tomcat-juli:7.0.19") // tomcat jdbc needs this
3229
testLibrary("com.zaxxer:HikariCP:2.4.0")
3330
testLibrary("com.mchange:c3p0:0.9.5")
3431
testLibrary("com.alibaba:druid:1.2.20")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import org.junit.jupiter.api.extension.RegisterExtension;
3030

3131
@SuppressWarnings("deprecation") // using deprecated semconv
32-
class DruicDataSourceTest {
32+
class DruidDataSourceTest {
3333

3434
@RegisterExtension
3535
static final InstrumentationExtension testing = AgentInstrumentationExtension.create();

0 commit comments

Comments
 (0)