项目作者: Martinsos

项目描述 :
My exercise project following "Test Drive Development: By Example" by Kent Beck.
高级语言: Python
项目地址: git://github.com/Martinsos/tdd-by-example.git
创建时间: 2018-09-10T17:59:31Z
项目社区:https://github.com/Martinsos/tdd-by-example

开源协议:

下载


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.