LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
global class Assert {
    global Assert() { }
    global static void areEqual(Object expected, Object actual, String msg) { }
    global static void areEqual(Object expected, Object actual) { }
    global static void areNotEqual(Object notExpected, Object actual, String msg) { }
    global static void areNotEqual(Object notExpected, Object actual) { }
    global Object clone() { }
    global static void fail(String msg) { }
    global static void fail() { }
    global static void isFalse(Boolean condition, String msg) { }
    global static void isFalse(Boolean condition) { }
    global static void isInstanceOfType(Object instance, System.Type expectedType, String msg) { }
    global static void isInstanceOfType(Object instance, System.Type expectedType) { }
    global static void isNotInstanceOfType(Object instance, System.Type notExpectedType, String msg) { }
    global static void isNotInstanceOfType(Object instance, System.Type notExpectedType) { }
    global static void isNotNull(Object value, String msg) { }
    global static void isNotNull(Object value) { }
    global static void isNull(Object value, String msg) { }
    global static void isNull(Object value) { }
    global static void isTrue(Boolean condition, String msg) { }
    global static void isTrue(Boolean condition) { }
 
}