Coverage report: /home/runner/work/geb/geb/src/gui/commands.lisp
Kind | Covered | All | % |
expression | 0 | 27 | 0.0 |
branch | 0 | 4 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
3
(define-display-clim-command (com-quit :name t) ()
4
(frame-exit *application-frame*))
6
(define-display-clim-command (com-redisplay :name t) ()
7
(redisplay-frame-panes *application-frame* :force-p t))
9
(define-display-clim-command (com-swap :name t) ()
10
(setf (graph-p *application-frame*)
11
(not (graph-p *application-frame*)))
12
(redisplay-frame-panes *application-frame* :force-p t))
14
(define-display-clim-command (com-dot :name t) ()
15
(setf (dot-p *application-frame*)
16
(not (dot-p *application-frame*)))
17
(redisplay-frame-panes *application-frame* :force-p t))