Skip to content

v0.2.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Feb 00:34
v0.2.1
859b8f8
  • 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);

Full Changelog: v0.2.0...v0.2.1