Skip to content

My exercise project following "Test Drive Development: By Example" by Kent Beck.

Notifications You must be signed in to change notification settings

Martinsos/tdd-by-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tdd-by-example

Setup

Bazel

We are using Bazel as our build system, so make sure to install bazel globally on your machine.

Building

We are using Bazel build system. Everything is defined in BUILD files (+ one WORKSPACE file). Learn more about Bazel to know how to build specific targets, locate produced binaries and so on.

Tests

We are using Catch2 test framework.

While you can use Bazel to run specific tests, there is run-tests script to easily build and run all tests. This runs tests through Bazel, which is recommended way to do it (by Bazel), but we do lose Catch2 output coloring.

If you want to run it purely through Catch2, without Bazel interfering, you can run binaries that are produced as a result of building Bazel cc_test targets. Let's say you have Bazel cc_test target my-test. You can then do: bazel build //test:my-test to build the binary and then bazel-bin/test/my-test to run it.

About

My exercise project following "Test Drive Development: By Example" by Kent Beck.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published