From 5fd8e190dd6b7f5e68aecb781ded66f79b50a5a1 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 30 Apr 2024 14:13:48 +0900 Subject: [PATCH] Remove tests/test-menu-icon-setting.php --- tests/test-menu-icon-setting.php | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/test-menu-icon-setting.php diff --git a/tests/test-menu-icon-setting.php b/tests/test-menu-icon-setting.php deleted file mode 100644 index 7888568f..00000000 --- a/tests/test-menu-icon-setting.php +++ /dev/null @@ -1,28 +0,0 @@ -'; - } - - public function testMenuIconOutput() { - update_option('veu_menu_icon', 'dashicons-admin-generic'); - $output = $this->get_menu_icon_html(); - $this->assertStringContainsString('dashicons-admin-generic', $output, 'The output should contain the correct dashicon class.'); - } - - protected function tearDown(): void { - delete_option('veu_menu_icon'); - parent::tearDown(); - } -}