getSessionBeanStore() public method

Returns the configured {@link \bitExpert\Disco\Store\BeanStore} used to store the session-aware beans in.
public getSessionBeanStore ( ) : bitExpert\Disco\Store\BeanStore
return bitExpert\Disco\Store\BeanStore
 /**
  * @test
  */
 public function configuredBeanStoreInstanceCanBererieved()
 {
     $beanStore = new SerializableBeanStore();
     $config = new BeanFactoryConfiguration(sys_get_temp_dir());
     $config->setSessionBeanStore($beanStore);
     self::assertSame($beanStore, $config->getSessionBeanStore());
 }