MCPcopy Create free account
hub / github.com/ciphermodelabs/ciphercore / test_context_deep_equal

Function test_context_deep_equal

ciphercore-base/src/graphs.rs:5326–5334  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5324
5325 #[test]
5326 fn test_context_deep_equal() {
5327 let generators = context_generators();
5328 for i in 0..generators.len() {
5329 test_context_deep_equal_helper_equal(&generators[i]);
5330 for j in 0..i {
5331 test_context_deep_equal_helper_nonequal(&generators[i], &generators[j]);
5332 }
5333 }
5334 }
5335
5336 pub fn deserialize_error_lenient(serialized_string: &str, error_msg: &str) {
5337 use std::panic::catch_unwind;

Callers

nothing calls this directly

Tested by

no test coverage detected