Kind | Covered | All | % |
expression | 0 | 5 | 0.0 |
branch | 0 | 0 | nil |
1
;;; math/tests.lisp --- MATH tests
2
3
;;
4
5
;;; Code:
6
(defpackage :math/tests
7
(:use :cl :rt :math :std))
8
9
(in-package :math/tests)
10
11
(defsuite :math)
12
(in-suite :math)
13
14
(deftest sanity ()
15
(signals math-error (math-error))
16
(signals math-warning (math-warning)))
17