source: CONFIG_DEVT/IPSLCM6.5_work_ENSEMBLES/modeles/NEMO/ext/FCM/t/Fcm/CLI/Exception.t @ 5501

Last change on this file since 5501 was 5501, checked in by aclsce, 4 years ago

First import of IPSLCM6.5_work_ENSEMBLES working configuration

  • Property svn:executable set to *
File size: 565 bytes
Line 
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More qw{no_plan};
7
8main();
9
10sub main {
11    my $class = 'Fcm::CLI::Exception';
12    use_ok($class);
13    test_normal($class);
14}
15
16################################################################################
17# Tests normal usage
18sub test_normal {
19    my ($class) = @_;
20    my $prefix = 'normal';
21    my $e = $class->new({message => 'message'});
22    isa_ok($e, $class, $prefix);
23    is("$e", "$class: message\n", "$prefix: as_string()");
24    is($e->get_message(), 'message', "$prefix: get_message()");
25}
26
27__END__
Note: See TracBrowser for help on using the repository browser.