Add exception handling for test runner.

This commit is contained in:
James Grogan 2023-01-16 18:16:14 +00:00
parent b76dc184b3
commit d370c26c42
3 changed files with 11 additions and 3 deletions

View file

@ -12,7 +12,7 @@ Image::Image(unsigned width, unsigned height, DataType dataType)
mHeight(height),
mDataType(dataType)
{
initialize();
}
Image::~Image()

View file

@ -48,7 +48,6 @@ public:
private:
void initialize();
unsigned mWidth{1};
unsigned mHeight{1};
unsigned mBitDepth{8};