File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
tests/Unit/Traits/Helpers Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,27 @@ public function test_can_check_if_filter_layout_slidedown_is_visible(): void
204204 $ this ->assertTrue ($ this ->basicTable ->getFilterSlideDownDefaultStatus ());
205205 }
206206
207+ public function test_can_check_if_filter_layout_slidedown_is_visible_directly (): void
208+ {
209+ $ this ->assertFalse ($ this ->basicTable ->filtersSlideDownIsDefaultVisible ());
210+
211+ $ this ->basicTable ->setFilterSlideDownDefaultStatusEnabled ();
212+
213+ $ this ->assertTrue ($ this ->basicTable ->filtersSlideDownIsDefaultVisible ());
214+ }
215+
216+
217+ public function test_can_check_if_filter_layout_slidedown_is_hidden_directly (): void
218+ {
219+ $ this ->assertTrue ($ this ->basicTable ->filtersSlideDownIsDefaultHidden ());
220+
221+ $ this ->basicTable ->setFilterSlideDownDefaultStatusEnabled ();
222+
223+ $ this ->assertFalse ($ this ->basicTable ->filtersSlideDownIsDefaultHidden ());
224+
225+ }
226+
227+
207228 public function test_can_check_if_filter_layout_slidedown_is_hidden (): void
208229 {
209230 $ this ->assertFalse ($ this ->basicTable ->getFilterSlideDownDefaultStatus ());
You can’t perform that action at this time.
0 commit comments