Coverage report: /home/ellis/comp/core/lib/math/tests.lisp

KindCoveredAll%
expression05 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
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