mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-26 00:54:27 +00:00
Webdav Schnittstelle für DMS - Erstversion
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
class Sabre_VObject_ParameterTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
function testSetup() {
|
||||
|
||||
$param = new Sabre_VObject_Parameter('name','value');
|
||||
$this->assertEquals('NAME',$param->name);
|
||||
$this->assertEquals('value',$param->value);
|
||||
|
||||
}
|
||||
|
||||
function testCastToString() {
|
||||
|
||||
$param = new Sabre_VObject_Parameter('name','value');
|
||||
$this->assertEquals('value',$param->__toString());
|
||||
$this->assertEquals('value',(string)$param);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user