File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ public function testGetterAndSetters() : void
124
124
$ style ->setTitleSeparator ('+ ' );
125
125
$ style ->setWidth (200 );
126
126
$ style ->setMargin (10 );
127
- $ style ->setPadding (10 );
127
+ $ style ->setPaddingTopBottom (5 );
128
+ $ style ->setPaddingLeftRight (10 );
128
129
$ style ->setBorderTopWidth (1 );
129
130
$ style ->setBorderRightWidth (2 );
130
131
$ style ->setBorderBottomWidth (3 );
@@ -140,7 +141,8 @@ public function testGetterAndSetters() : void
140
141
self ::assertSame ('+ ' , $ style ->getTitleSeparator ());
141
142
self ::assertSame (200 , $ style ->getWidth ());
142
143
self ::assertSame (10 , $ style ->getMargin ());
143
- self ::assertSame (10 , $ style ->getPadding ());
144
+ self ::assertSame (5 , $ style ->getPaddingTopBottom ());
145
+ self ::assertSame (10 , $ style ->getPaddingLeftRight ());
144
146
self ::assertSame (1 , $ style ->getBorderTopWidth ());
145
147
self ::assertSame (2 , $ style ->getBorderRightWidth ());
146
148
self ::assertSame (3 , $ style ->getBorderBottomWidth ());
You can’t perform that action at this time.
0 commit comments