9 lines
229 B
C++
9 lines
229 B
C++
|
#include <catch2/catch.hpp>
|
||
|
#include <Bitmap.h>
|
||
|
|
||
|
TEST_CASE("default values") {
|
||
|
Bitmap bitmap = Bitmap();
|
||
|
REQUIRE(bitmap.getWidth() == 0);
|
||
|
REQUIRE(bitmap.getHeight() == 0);
|
||
|
REQUIRE(bitmap.getBitsPerPixel() == 0);
|
||
|
}
|