Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
NoActiveTestException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace CirrusSearch;
4
5/**
6 * Thrown when a user testing method is called that requires an active test,
7 * but no test was active. Callers must check the active state on the user
8 * testing status before using some methods.
9 */
10class NoActiveTestException extends \Exception {
11}