コード例 #1
0
ファイル: TestCommon.php プロジェクト: jsnshrmn/Suma
 public function testBarThinWidth()
 {
     $this->_object->setBarThinWidth(1);
     $this->assertSame(1, $this->_object->getBarThinWidth());
     $this->_object->setBarThinWidth(true);
     $this->assertSame(1, $this->_object->getBarThinWidth());
     $this->_object->setBarThinWidth('200a');
     $this->assertSame(200, $this->_object->getBarThinWidth());
 }