wtest 0.1.2

Tools for writing and running tests.
Documentation
use super::*;
#[ cfg( feature = "canonical" ) ]
use TheModule::canonical::CellNodeFactory as TheFactory;

#[ cfg( feature = "canonical" ) ]
include!( "./factory_impls.rs" );

#[ cfg( feature = "canonical" ) ]
tests_impls!
{

  fn nodecell_make()
  {
    use TheModule::prelude::*;

    let node : TheModule::canonical::Node = make!( 13 );
    a_id!( node.id(), 13.into() );
    let cellnode : < TheModule::canonical::CellNodeFactory as GraphNodesNominalInterface >::NodeHandle = make!( node );

  }

}

//

#[ cfg( feature = "canonical" ) ]
tests_index!
{

  node,
  basic,
  make_default,
  make_with_edge_list,
  make_with_edge_list_string,
  graph_print,

  nodecell_make,

}