#!/usr/bin/perl
use strict;
use warnings;
use Dante::Correlation::CorrelationEngine;
my $correlationEngine = Dante::Correlation::CorrelationEngine->new(1);
$correlationEngine->testFunction();
exit;
####
#
# Dante::Correlation::CorrelationEngine.pm - Implements top-level correlation logic.
#
##########
use strict;
use warnings;
use Date::Parse;
# There are a bunch of other .pm includes here, but they are modules for the project, not any other perl module
# There are other functions here, not listed, of course
sub testFunction
{
print str2time("2011-03-18 02:39:04") . "\n";
print str2time("1970-01-01 00:00:10") . "\n";
print str2time("2012-01-05 14:23:09") . "\n";
}
# Must return 1 for the class to be compilable.
1;
# End of Dante::Correlation::CorrelationEngine.pm
####
./test2.pl
Undefined subroutine &Dante::Correlation::CorrelationEngine::str2time called at Dante/Correlation/CorrelationEngine.pm line 664.