OutpostUniverse / OP2Utility

C++ library for working with Outpost 2 related files and tasks.
MIT License
4 stars 0 forks source link

Use DynamicMemoryReader for Bitmap testing #367

Closed Brett208 closed 3 years ago

Brett208 commented 3 years ago

Much of the bitmap file code currently tests by writing and then reading from disk. The DynamicMemoryReader can be used to remove the need to write to disk in the testing. This will reduce the complexity of the test code since there will be no need to cleanup the filesystem and may improve test run time.

Identified in PR #366 as a future enhancement.