## Running tests You can run `clojure.test` tests pretty quickly in CIDER. Pressing C-c C-t n or C-c C-t C-n in a source buffer or a REPL buffer will run the tests for the namespace you're currently in. CIDER is smart enough to figure out the namespace containing the tests. You can also run all loaded tests with C-c C-t l or C-c C-t C-l and all tests within a project with C-c C-t p or C-c C-t C-p (note that this will load **all** namespaces in your project). Using C-c C-t t or C-c C-t C-t, you can execute only the test a point. All test commands are available in REPL buffers as well. There you can also use , to invoke some of the testing commands. In the buffer displaying the test execution results (`*cider-test-results*`) you'll have a bit of additional functionality at your disposal. Keyboard shortcut | Description --------------------------------|------------------------------- g | Run test at point. n | Run tests for current namespace. l | Run tests for all loaded namespaces. p | Run tests for all project namespaces. This loads the additional namespaces. f | Re-run test failures/errors. M-p | Move point to previous test. M-n | Move point to next test. t or M-. | Jump to test definition. d | Display diff of actual vs expected. e | Display test error cause and stacktrace info. Certain aspects of the test execution behavior are configurable: * If your tests are not following the `some.ns-test` naming convention you can customize the variable `cider-test-infer-test-ns`. It should be bound to a function that takes the current namespace and returns the matching test namespace (which may be the same as the current namespace). * If your individual tests are not defined by `deftest` or `defspec`, CIDER will not recognize them when searching for a test at point in `cider-test-run-test`. You can customize the variable `cider-test-defining-forms` to add additional forms for CIDER to recognize as individual test definitions. * If you want to view the test report regardless of whether the tests have passed or failed: ```el (setq cider-test-show-report-on-success t) ``` ### Running tests automatically (test-driven development) CIDER provides a minor-mode that automatically runs all tests for a namespace whenever you load a file (with C-c C-k). You can toggle it manually with M-x `cider-auto-test-mode`, or you can use: ```el (cider-auto-test-mode 1) ``` This is completely equivalent to manually typing C-c C-t C-n every time you load a Clojure buffer. Also, as described above before, CIDER is smart enough to figure out the namespace containing the tests. ### Using cider-test with alternative test libraries The `clojure.test` machinery is designed to be pluggable. Any test library can implement it if so desired, and therefore leverage `cider-test`. For instance, [test.check](https://github.com/clojure/test.check/) does this, and `cider-test` handles `defspec` just like `deftest`. As a test framework author, supporting the built-in `clojure.test` machinery (and hence `cider-test`) is pretty straightforward: 1. Assoc each test fn as `:test` metadata on some var. These are what get run. 2. Implement the `clojure.test/report` multimethod to capture the test results. The `test.check` library is a good example here. It was also designed completely independently of `clojure.test`. It just adds compatibility in this [namespace](https://github.com/clojure/test.check/blob/24f74b83f1c7a032f98efdcc1db9d74b3a6a794d/src/main/clojure/clojure/test/check/clojure_test.cljc).