zagens-core 0.8.0

Core runtime boundaries for Zagens agent architecture
Documentation
1
2
3
4
5
6
//! Test-only helpers for `zagens-core` unit tests.

/// Assert two strings are byte-identical with a contextual message on failure.
pub(crate) fn assert_byte_identical(context: &str, a: &str, b: &str) {
    assert_eq!(a, b, "{context}");
}