JakeWharton / DiskLruCache

Java implementation of a Disk-based LRU cache which specifically targets Android compatibility.
http://jakewharton.github.io/DiskLruCache
Apache License 2.0
5.79k stars 1.18k forks source link

Make DiskLruCache non final for mocking #68

Closed stephanenicolas closed 7 years ago

stephanenicolas commented 10 years ago

Please remove the final modifier so that DiskLruCache can be mocked for testing.

JakeWharton commented 10 years ago

Just use a temp directory?

stephanenicolas commented 10 years ago

Would be cleaner to mock the dependency Jake.