public function testWonkyAttributeNames()
 {
     $p = new Product();
     $p->__set('4chan', 'sucks');
     $this->assertTrue($p->__isset('4chan'));
     $this->assertEquals('sucks', $p->__get('4chan'));
 }