File tree Expand file tree Collapse file tree
src/cli/tests/Flow/CLI/Tests/Integration Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010use Flow \CLI \Tests \Context \DatabaseContext ;
1111use Flow \ETL \Tests \FlowTestCase ;
1212use Symfony \Component \Console \Tester \CommandTester ;
13+ use Flow \Filesystem \Tests \OperatingSystem ;
1314
1415final class DatabaseTableListCommandTest extends FlowTestCase
1516{
1617 protected ?DatabaseContext $ dbContext = null ;
1718
19+ use OperatingSystem;
20+
1821 protected function setUp () : void
1922 {
2023 parent ::setUp ();
2124
25+ if ($ this ->isWindows ()) {
26+ self ::markTestSkipped ('DatabaseTableListCommand is not supported on Windows. ' );
27+ }
28+
2229 $ this ->dbContext = new DatabaseContext ();
2330 $ this ->dbContext ->dropAllTables ();
2431 }
Original file line number Diff line number Diff line change 1010use Flow \CLI \Tests \Context \DatabaseContext ;
1111use Flow \ETL \Tests \FlowTestCase ;
1212use Symfony \Component \Console \Tester \CommandTester ;
13+ use Flow \Filesystem \Tests \OperatingSystem ;
1314
1415final class DatabaseTableSchemaCommandTest extends FlowTestCase
1516{
1617 protected ?DatabaseContext $ dbContext = null ;
1718
19+ use OperatingSystem;
20+
1821 protected function setUp () : void
1922 {
2023 parent ::setUp ();
2124
25+ if ($ this ->isWindows ()) {
26+ self ::markTestSkipped ('DatabaseTableListCommand is not supported on Windows. ' );
27+ }
28+
2229 $ this ->dbContext = new DatabaseContext ();
2330 $ this ->dbContext ->dropAllTables ();
2431 }
You can’t perform that action at this time.
0 commit comments