Nils Petzäll
Nils Petzäll
fixes issue #439 When looking the names loop wasn't duplicated in any validating fashion. So adding a handlesArg method wouldn't improve anything. Extracting a method might have been nice, but...
If you have a parameter called -abc and a dynamic parameter -ab. -abc will be expanded to "-ab" "c" And behold you'll get an exception since "c" is not a...
JDBC - MSSQL - getLivenessCheckPortNumbers() shouldn't that be the mapped port and not the internal?
https://github.com/testcontainers/testcontainers-java/blob/600d235d220d5e507405921b4e241aa73c067a2a/modules/mssqlserver/src/main/java/org/testcontainers/containers/MSSQLServerContainer.java#L64-L67 Mysql has the ports mapped https://github.com/testcontainers/testcontainers-java/blob/600d235d220d5e507405921b4e241aa73c067a2a/modules/mysql/src/main/java/org/testcontainers/containers/MySQLContainer.java#L56-L60 If the overrides are removed you would receive mapped ports of the exposedPorts.
Graphviz implementation with dot-executable was initially checking that dot was version 2.26 or above and not version 2.31. I believe that these versions are so old that we don't need...
https://sonarcloud.io/project/security_hotspots?id=org.schemaspy%3Aschemaspy&hotspots=AYHESz4aWKdGJaBLELPD
*Given* * Two Schemas * Comments with reference links to tables. * Identical tables names in both schemas, real table in one of the schemas and synthetic(logical) in the other....
*Given* Comment in Markdown with a reference link to a non-existing table. *When* Analyzing with Html enabled. *Then* Comment has a reference link with path containing `null` **Expected** That it...
Project should contain formatting rules that can be applied using IDE and maven. Optionally there could be a git precommit hook that formats using maven.
We recently introduced Graph as the dot-format abstraction Then we have Diagram which transform/generate a visualization of the dot-format (example svg or png). With that understanding, we could rename DiagramProducer...