public function testWalkNotEqualsComparison() { $closure = $this->visitor ->walkComparison($this->builder ->neq("foo", 1)); $this ->assertFalse($closure(new TestObject(1))); $this ->assertTrue($closure(new TestObject(2))); }