protected void AssertHasBit(int value, int bit) { TestAssert.AssertTrue((value & bit) == bit); }
protected void AssertNotSame(object value, object expect, string msg = null) { TestAssert.AssertNotSame(value, expect, msg); }
protected void AssertEquals(object value, object expect, string msg = null) { TestAssert.AssertEquals(value, expect, msg); }
protected void AssertApproximatelySame(object value, object expect, string msg = null) { TestAssert.AssertApproximatelySame(value, expect, msg); }
protected void AssertFalse(bool value, string msg = null) { TestAssert.AssertTrue(!value, msg); }