88
99use Magento \FunctionalTestingFramework \Config \MftfApplicationConfig ;
1010use Magento \FunctionalTestingFramework \Test \Handlers \TestObjectHandler ;
11+ use Magento \FunctionalTestingFramework \Test \Objects \TestObject ;
1112use Magento \FunctionalTestingFramework \Util \Script \ScriptUtil ;
1213use Symfony \Component \Console \Input \InputInterface ;
1314use Exception ;
@@ -110,7 +111,8 @@ public function getOutput()
110111 * description
111112 * severity
112113 *
113- * @param $test
114+ * @param TestObject $test
115+ * @return void
114116 */
115117 private function validateRequiredAnnotations ($ test )
116118 {
@@ -146,7 +148,8 @@ private function validateRequiredAnnotations($test)
146148 /**
147149 * Add the key = "stories appended to title", value = test name, to the class variable.
148150 *
149- * @param $test
151+ * @param TestObject $test
152+ * @return void
150153 */
151154 private function aggregateStoriesTitlePairs ($ test )
152155 {
@@ -161,7 +164,8 @@ private function aggregateStoriesTitlePairs($test)
161164 /**
162165 * Add the key = "testCaseId appended to title", value = test name, to the class variable.
163166 *
164- * @param $test
167+ * @param TestObject $test
168+ * @return void
165169 */
166170 private function aggregateTestCaseIdTitlePairs ($ test )
167171 {
@@ -177,7 +181,7 @@ private function aggregateTestCaseIdTitlePairs($test)
177181 * Strip away the testCaseId prefix that was automatically added to the test title
178182 * so that way we have just the raw title from the XML file.
179183 *
180- * @param $test
184+ * @param TestObject $test
181185 * @return string|null
182186 */
183187 private function getTestTitleWithoutPrefix ($ test )
@@ -194,6 +198,8 @@ private function getTestTitleWithoutPrefix($test)
194198
195199 /**
196200 * Adds an error if any story+title pairs are used by more than one test.
201+ *
202+ * @return void
197203 */
198204 private function validateStoriesTitlePairs ()
199205 {
@@ -206,6 +212,8 @@ private function validateStoriesTitlePairs()
206212
207213 /**
208214 * Adds an error if any testCaseId+title pairs are used by more than one test.
215+ *
216+ * @return void
209217 */
210218 private function validateTestCaseIdTitlePairs ()
211219 {
0 commit comments