Run the whole test suite.
dotnet test
dotnet test --filter Category=Unit
For integration testing you should run the following image from "https://hub.docker.com/r/kartoza/postgis/".
Default PostgreSQL user is 'docker' with password 'docker'. The integration tests have already specified the default credentials, so you don't want to worry about that.
docker run --name "postgis" -p 5432:5432 -d -t kartoza/postgis:12.4
Running the integration tests
dotnet test --filter Category=Integration