import "testify"

fn test_assert() {
    testify.assert(1 == 2, "1 != 2")
    testify.assert_eq(1, 2, "1 should is equal to 2")
    testify.assert_ne(1, 1, "1 == 1")
}