@@ -50,7 +50,7 @@ public function testGenerateSuite()
50
50
$ mockSuiteGenerator = SuiteGenerator::getInstance ();
51
51
$ mockSuiteGenerator ->generateSuite ("basicTestSuite " );
52
52
53
- // assert on that expected suite is generated
53
+ // assert that expected suite is generated
54
54
$ this ->expectOutputString ("Suite basicTestSuite generated to _generated/basicTestSuite. " . PHP_EOL );
55
55
}
56
56
@@ -83,7 +83,7 @@ public function testGenerateAllSuites()
83
83
$ mockSuiteGenerator = SuiteGenerator::getInstance ();
84
84
$ mockSuiteGenerator ->generateAllSuites ($ exampleTestManifest );
85
85
86
- // assert on created suite object
86
+ // assert that expected suites are generated
87
87
$ this ->expectOutputString ("Suite basicTestSuite generated to _generated/basicTestSuite. " . PHP_EOL );
88
88
}
89
89
@@ -99,10 +99,6 @@ private function setMockTestAndSuiteParserOutput($testData, $suiteData)
99
99
$ property ->setAccessible (true );
100
100
$ property ->setValue (null );
101
101
102
- $ property = new \ReflectionProperty (DefaultTestManifest::class, 'CLEARED_MANIFESTS ' );
103
- $ property ->setAccessible (true );
104
- $ property ->setValue (["sample/path " ]);
105
-
106
102
// clear test object handler value to inject parsed content
107
103
$ property = new \ReflectionProperty (TestObjectHandler::class, 'testObjectHandler ' );
108
104
$ property ->setAccessible (true );
0 commit comments