From 2a60ff35fbf059e5a2076528950d1cec00a95ae4 Mon Sep 17 00:00:00 2001 From: Thomas Steur <thomas.steur@googlemail.com> Date: Mon, 3 Mar 2014 01:58:21 +0100 Subject: [PATCH] refs #57 fix tests --- tests/PHPUnit/Integration/Core/WidgetsListTest.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/PHPUnit/Integration/Core/WidgetsListTest.php b/tests/PHPUnit/Integration/Core/WidgetsListTest.php index 451c84274d..d861b385b1 100644 --- a/tests/PHPUnit/Integration/Core/WidgetsListTest.php +++ b/tests/PHPUnit/Integration/Core/WidgetsListTest.php @@ -50,7 +50,8 @@ class Core_WidgetsListTest extends DatabaseTestCase 'Goals_Goals' => 1, 'SEO' => 2, 'Example Widgets' => 4, - 'DevicesDetection_DevicesDetection' => 7 + 'DevicesDetection_DevicesDetection' => 7, + 'Insights_Category' => 1 ); // number of main categories @@ -84,7 +85,7 @@ class Core_WidgetsListTest extends DatabaseTestCase WidgetsList::_reset(); // number of main categories - $this->assertEquals(11, count($widgets)); + $this->assertEquals(12, count($widgets)); // check that the goal widget was added $numberOfWidgets = array( @@ -119,7 +120,7 @@ class Core_WidgetsListTest extends DatabaseTestCase WidgetsList::_reset(); // number of main categories - $this->assertEquals(12, count($widgets)); + $this->assertEquals(13, count($widgets)); // check if each category has the right number of widgets $numberOfWidgets = array( @@ -152,11 +153,11 @@ class Core_WidgetsListTest extends DatabaseTestCase WidgetsList::_reset(); $widgets = WidgetsList::get(); - $this->assertCount(12, $widgets); + $this->assertCount(13, $widgets); WidgetsList::remove('SEO', 'NoTeXiStInG'); $widgets = WidgetsList::get(); - $this->assertCount(12, $widgets); + $this->assertCount(13, $widgets); $this->assertArrayHasKey('SEO', $widgets); $this->assertCount(2, $widgets['SEO']); -- GitLab