├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go └── repository ├── cassandra ├── cassandra.go └── cassandra_test.go ├── mysql ├── mysql.go └── mysql_test.go ├── postgres ├── postgres.go └── postgres_test.go └── repository.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/main.go -------------------------------------------------------------------------------- /repository/cassandra/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/cassandra/cassandra.go -------------------------------------------------------------------------------- /repository/cassandra/cassandra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/cassandra/cassandra_test.go -------------------------------------------------------------------------------- /repository/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/mysql/mysql.go -------------------------------------------------------------------------------- /repository/mysql/mysql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/mysql/mysql_test.go -------------------------------------------------------------------------------- /repository/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/postgres/postgres.go -------------------------------------------------------------------------------- /repository/postgres/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/postgres/postgres_test.go -------------------------------------------------------------------------------- /repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moemoe89/integration-test-golang/HEAD/repository/repository.go --------------------------------------------------------------------------------