FUNCTION
Happy Path Simple plain header. This definitely should work
SOURCE
{
my $source = <<'EOF';
/****f* Test/test
* NAME
* Test
* FUNCTION
* Test2
******
*/
EOF
add_source( "test.c", $source );
my ($out, $err) = runrobo( qw(--src Src --doc Doc --multidoc --test) );
is( $out, '', 'no output' );
is( $err, '', 'and no error' );
clean();
}