Argentum_02

my_assert.h

Apr 9th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. #pragma once
  2. #include "test_runner.h"
  3.  
  4.  
  5. void Assert(bool b, const string& hint) {
  6.   AssertEqual(b, true, hint);
  7. }
Add Comment
Please, Sign In to add comment