Skip to content

Instantly share code, notes, and snippets.

@kmdupr33
Last active August 29, 2015 14:19
Show Gist options
  • Save kmdupr33/554cc7afe27cdc5e6426 to your computer and use it in GitHub Desktop.
Save kmdupr33/554cc7afe27cdc5e6426 to your computer and use it in GitHub Desktop.
public void testCacheUpdate() {
//Arrange
CalculationCache calcCache = new CalculationCache();
Calculator calculator = new Calculator();
MathNerd mathNerd = new MathNerd(calcCache, calculator);
Calculation calcualation = new Calculation("e^2000");
//Act
mathNerd.doIntenseCalculationInBackground(calculation, null);
//some smelly Thread.sleep() code...
//Assert
calcCache.contains(calculation);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment