public function testParametersAndObjectsAreStored()
 {
     Apricot::sets(array('foo' => 'Foo', 'bar' => 'Bar', 'baz' => new \stdClass()));
     $this->assertTrue('Foo' === Apricot::get('foo') && 'Bar' === Apricot::get('bar') && Apricot::get('baz') instanceof \stdClass);
 }