This command builds a docker image with the code of this repository and runs the repository's tests
./build_docker.sh my_app
docker run --rm -it my_app ./run_tests.sh
This example runs a single test matching by name
./build_docker.sh my_app
docker run --rm -it my_app ./run_tests.sh --filter "FullyQualifiedName=MyLibrary.Tests.CalculatorTests.Add_WithTwoIntegers_ReturnsTheirSum"