v0.2.1
Pre-release
Pre-release
- Add ptr support in #3
- Now, you don't have to assert a pointer not being null before de-refing it, you can just pass it directly
// For example: assume a and b are int*s EXPECT_PTR(a, !=, NULL); EXPECT_PTR(b, !=, NULL); EXPECT_INT(*a, >, *b); // becomes: EXPECT_INT_PTR(a, >, b);
- Now, you don't have to assert a pointer not being null before de-refing it, you can just pass it directly
Full Changelog: v0.2.0...v0.2.1