- ne(Object, Object, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that two objects (including arrays) are not equal.
- ne(Object, Object) - Static method in class osgl.ut.TestBase
-
Asserts that two objects (including arrays) are not equal.
- ne(double[], double[], double, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that two double arrays are not equal.
- ne(double[], double[], double) - Static method in class osgl.ut.TestBase
-
Asserts that two double arrays are not equal.
- ne(float[], float[], float, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that two float arrays are not equal.
- ne(float[], float[], float) - Static method in class osgl.ut.TestBase
-
Asserts that two float arrays are not equal.
- ne(double, double, double, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that two doubles or floats are not equal to within a positive delta.
- ne(double, double, double) - Static method in class osgl.ut.TestBase
-
Asserts that two doubles or floats are not equal to within a positive delta.
- no(boolean) - Static method in class osgl.ut.TestBase
-
Alias of Assert.assertFalse(boolean).
- no(boolean, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that a condition is false.
- no(T, Matcher<T>) - Static method in class osgl.ut.TestBase
-
Require actual NOT satisfied the condition specified by matcher.
- no(T, Matcher<T>, String, Object...) - Static method in class osgl.ut.TestBase
-
Require actual NOT satisfied the condition specified by matcher.
- notBlank(String, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that a string isn’t blank.
- notBlank(String) - Static method in class osgl.ut.TestBase
-
Asserts that a string isn’t blank.
- notEmpty(String, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that a string isn’t empty.
- notEmpty(String) - Static method in class osgl.ut.TestBase
-
Asserts that a string isn’t empty.
- notEmpty(Collection<?>, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that a collection isn’t empty.
- notEmpty(Collection<?>) - Static method in class osgl.ut.TestBase
-
Asserts that a collection isn’t empty.
- notEmpty(Map<?, ?>, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that a map isn’t empty.
- notEmpty(Map<?, ?>) - Static method in class osgl.ut.TestBase
-
Asserts that a map isn’t empty.
- notEmpty(T[], String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that an array isn’t empty.
- notEmpty(T[]) - Static method in class osgl.ut.TestBase
-
Asserts that an array isn’t empty.
- notNull(Object, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that an object isn’t null.
- notNull(Object) - Static method in class osgl.ut.TestBase
-
Alias of Assert.assertNotNull(Object).
- notSame(Object, Object, String, Object...) - Static method in class osgl.ut.TestBase
-
Asserts that two objects do not refer to the same object.
- notSame(Object, Object) - Static method in class osgl.ut.TestBase
-
Alias of Assert.assertNotSame(Object, Object).