Skip to content

Instantly share code, notes, and snippets.

@obegendi
Created July 21, 2019 15:53
Show Gist options
  • Save obegendi/7d2c64a1536b6c137e1a508ce74602ba to your computer and use it in GitHub Desktop.
Save obegendi/7d2c64a1536b6c137e1a508ce74602ba to your computer and use it in GitHub Desktop.
[Fact]
public void GaDataProcessShouldSaveAsUnstructured()
{
//Arrange
var gadbServicesMock = new Mock<IGaDbServices>();
var service = new GoogleAnalyticsServices(gadbServicesMock);
var date = DateTime.Today.AddDays(-2);
//Act
var list = service.GaDataProcess("",date,date.AddDays(1));
//Assert
gadbServicesMock.Verify(x => x.SaveAsUnstructured());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment