Add missing Testcontainers service connection tests

Closes gh-35039
This commit is contained in:
Andy Wilkinson
2024-05-20 12:13:04 +01:00
parent b9fcd575ff
commit f5262d89df
10 changed files with 533 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
databaseChangeLog:
- changeSet:
id: 1
author: wilkinsona
changes:
- createTable:
tableName: example
columns:
- column:
name: id
type: int
autoIncrement: true
constraints:
primaryKey: true
nullable: false
- column:
name: name
type: varchar(50)
constraints:
nullable: false