summaryrefslogtreecommitdiff
path: root/tests/unit/Web
diff options
context:
space:
mode:
authorknut <>2006-02-02 22:49:40 +0000
committerknut <>2006-02-02 22:49:40 +0000
commit4724cb4ed35c6cdb31e2c3381002f62bd6530e5a (patch)
treeca7f3fd924e07d7ff885b6e0024bc6745b909d5b /tests/unit/Web
parent926465223486b1c705b8414a203c0a72abef760f (diff)
removed checking getTagName() since it's protected
Diffstat (limited to 'tests/unit/Web')
-rw-r--r--tests/unit/Web/UI/WebControls/TLabelTest.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/unit/Web/UI/WebControls/TLabelTest.php b/tests/unit/Web/UI/WebControls/TLabelTest.php
index 5518a4d8..726137d4 100644
--- a/tests/unit/Web/UI/WebControls/TLabelTest.php
+++ b/tests/unit/Web/UI/WebControls/TLabelTest.php
@@ -8,14 +8,6 @@ Prado::using('System.Web.UI.THtmlWriter');
* @package System.Web.UI.WebControls
*/
class TLabelTest extends PHPUnit2_Framework_TestCase {
-
- public function testGetTagName() {
- $label = new TLabel();
- $this->assertEquals('span', $label->getTagName());
-
- $label->setForControl('Test');
- $this->assertEquals('label', $label->getTagName());
- }
public function testSetText() {
$label = new TLabel();