dunit.ng.assertion

Members

Functions

assertArrayEquals
void assertArrayEquals(in T[] actual, in U[] expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the arrays are equal.

assertArrayEquals
void assertArrayEquals(in T[V] actual, in U[V] expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the associative arrays are equal.

assertEquals
void assertEquals(T actual, U expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the values are equal.

assertNotSame
void assertNotSame(T actual, U expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the values are not the same.

assertRangeEquals
void assertRangeEquals(R1 actual, R2 expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the ranges are equal.

assertSame
void assertSame(T actual, U expected, lazy string msg = null, string file = __FILE__, size_t line = __LINE__)

Asserts that the values are the same.

Meta