bitExpert\Disco\AnnotationBeanFactoryUnitTest::retrievingSingletonNonLazySessionBeanReturnsDependencyAsProxy PHP Method

retrievingSingletonNonLazySessionBeanReturnsDependencyAsProxy() public method

    public function retrievingSingletonNonLazySessionBeanReturnsDependencyAsProxy()
    {
        $bean = $this->beanFactory->get('singletonNonLazySessionBean');
        self::assertInstanceOf(VirtualProxyInterface::class, $bean->service);
    }
AnnotationBeanFactoryUnitTest