From 325640c5c1da34ae76a53c3b296c0561271c2de6 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 15 Sep 2014 21:36:56 -0400 Subject: [PATCH] Mark IntegrationTestCase as abstract. Without this PHPUnit whines as the class contains no test methods. --- src/TestSuite/IntegrationTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestSuite/IntegrationTestCase.php b/src/TestSuite/IntegrationTestCase.php index 811d49362b6..575f134a71c 100644 --- a/src/TestSuite/IntegrationTestCase.php +++ b/src/TestSuite/IntegrationTestCase.php @@ -32,7 +32,7 @@ * more of your code easily and avoid some of the maintenance pitfalls * that mock objects create. */ -class IntegrationTestCase extends TestCase { +abstract class IntegrationTestCase extends TestCase { /** * The data used to build the next request.