1: <?php
2:
3: /**
4: * This file is part of the Nette Tester.
5: * Copyright (c) 2009 David Grudl (http://davidgrudl.com)
6: */
7:
8: namespace Tester\Runner;
9:
10: use Tester;
11:
12:
13: /**
14: * Runner output.
15: *
16: * @author David Grudl
17: */
18: interface OutputHandler
19: {
20:
21: function begin();
22:
23: function result($testName, $result, $message);
24:
25: function end();
26:
27: }
28: