dunit.ng.assertion

Undocumented in source.

Public Imports

dunit.assertion
public import dunit.assertion : assertTrue, assertFalse, assertEmpty, assertNotEmpty, assertNull, assertNotNull, assertAll, expectThrows, fail, assertGreaterThan, assertGreaterThanOrEqual, assertLessThan, assertLessThanOrEqual, assertIn, assertNotIn, assertOp, assertEventually;

Members

Functions

assertArrayEquals
void assertArrayEquals(T[] actual, U[] expected, string msg, string file, size_t line)

Asserts that the arrays are equal.

assertArrayEquals
void assertArrayEquals(T[V] actual, U[V] expected, string msg, string file, size_t line)

Asserts that the associative arrays are equal.

assertEquals
void assertEquals(T actual, U expected, string msg, string file, size_t line)

Asserts that the values are equal.

assertNotSame
void assertNotSame(T actual, U expected, string msg, string file, size_t line)

Asserts that the values are not the same.

assertRangeEquals
void assertRangeEquals(R1 actual, R2 expected, string msg, string file, size_t line)

Asserts that the ranges are equal.

assertSame
void assertSame(T actual, U expected, string msg, string file, size_t line)

Asserts that the values are the same.

Meta