/**
  * @covers \Phactory::create_blueprint
  */
 public function testPhactoryCreateBlueprint()
 {
     $this->assertEquals(Phactory::create_blueprint('message', 'admin', array('title' => 'Good title')), (object) array('title' => 'Good title', 'content' => 'Food goes in here.', 'employer' => (object) array('is_admin' => true, 'first_name' => 'Fronzel', 'last_name' => 'Neekburm', 'email' => '*****@*****.**')));
 }