예제 #1
0
        public SearchableRepositoryTests(ITestOutputHelper output) : base(output)
        {
            _identityRepository = new IdentityRepository(_configuration);
            _dailyRepository    = new DailyLogEventRepository(_configuration);

            RemoveDataAsync().GetAwaiter().GetResult();
        }
예제 #2
0
        public RepositoryTests(ITestOutputHelper output) : base(output)
        {
            _dailyRepository    = new DailyLogEventRepository(_configuration);
            _employeeRepository = new EmployeeRepository(_configuration);
            _identityRepository = new IdentityRepository(_configuration);
            _identityRepositoryWithNoCaching = new IdentityWithNoCachingRepository(_configuration);

            RemoveDataAsync().GetAwaiter().GetResult();
        }