Change normal value for cell style tests
This commit is contained in:
parent
3d8f09dbc1
commit
34d91214b4
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue