comparison vendor/psy/psysh/test/Psy/Test/CodeCleaner/CalledClassPassTest.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
52 */ 52 */
53 public function testProcessStatementPasses($code) 53 public function testProcessStatementPasses($code)
54 { 54 {
55 $stmts = $this->parse($code); 55 $stmts = $this->parse($code);
56 $this->traverser->traverse($stmts); 56 $this->traverser->traverse($stmts);
57
58 // @todo a better thing to assert here?
59 $this->assertTrue(true);
57 } 60 }
58 61
59 public function validStatements() 62 public function validStatements()
60 { 63 {
61 return array( 64 return array(
82 $this->markTestSkipped(); 85 $this->markTestSkipped();
83 } 86 }
84 87
85 $stmts = $this->parse($code); 88 $stmts = $this->parse($code);
86 $this->traverser->traverse($stmts); 89 $this->traverser->traverse($stmts);
90
91 // @todo a better thing to assert here?
92 $this->assertTrue(true);
87 } 93 }
88 94
89 public function validTraitStatements() 95 public function validTraitStatements()
90 { 96 {
91 return array( 97 return array(