Start() public method

Callback to perform any necessary initialization of the underlying cache implementation during ISessionFactory construction.
public Start ( string>.IDictionary properties ) : void
properties string>.IDictionary current configuration settings
return void
        public void FixtureSetUp()
        {
            _props    = new Dictionary <string, string>();
            _provider = new SharedCacheProvider();

            _provider.Start(_props);
        }
        public void FixtureSetUp() {
            _props = new Dictionary<string, string>();
            _provider = new SharedCacheProvider();

            _provider.Start(_props);
        }