Change normal value for cell style tests

This commit is contained in:
Ivan Lanin 2014-03-09 22:17:21 +07:00
parent 3d8f09dbc1
commit 34d91214b4
1 changed files with 13 additions and 13 deletions

View File

@ -21,19 +21,19 @@ class PHPWord_Style_CellTest extends \PHPUnit_Framework_TestCase
$object = new PHPWord_Style_Cell(); $object = new PHPWord_Style_Cell();
$attributes = array( $attributes = array(
'valign' => null, 'valign' => 'left',
'textDirection' => null, 'textDirection' => PHPWord_Style_Cell::TEXT_DIR_BTLR,
'bgColor' => null, 'bgColor' => 'FFFF00',
'borderTopSize' => null, 'borderTopSize' => 120,
'borderTopColor' => null, 'borderTopColor' => 'FFFF00',
'borderLeftSize' => null, 'borderLeftSize' => 120,
'borderLeftColor' => null, 'borderLeftColor' => 'FFFF00',
'borderRightSize' => null, 'borderRightSize' => 120,
'borderRightColor' => null, 'borderRightColor' => 'FFFF00',
'borderBottomSize' => null, 'borderBottomSize' => 120,
'borderBottomColor' => null, 'borderBottomColor' => 'FFFF00',
'gridSpan' => null, 'gridSpan' => 2,
'vMerge' => null, 'vMerge' => 2,
); );
//'defaultBorderColor' => null, //'defaultBorderColor' => null,
foreach ($attributes as $key => $value) { foreach ($attributes as $key => $value) {