예제 #1
0
        public void DeleteCache_Removes_CacheDirectory()
        {
            //Arrange
            var sut = new IntegrationTestResponseCache();

            //Act
            sut.DeleteCache();

            //Assert
            Assert.False(Directory.Exists(sut.CacheLocation));
        }
예제 #2
0
 public void Dispose()
 {
     _sut.DeleteCache();
 }