SS
How do I write MS unit test for DbHelper.cs? I am unable to mock. In each DbHelper method there is _dbContext = new AppDbContext(GetAllOptions()) and GetAllOptions is looking for connection string. So overall it doesn't look right for mocking and creating unit test cases. Any example will help.