view lib/IMPL/Test/Result.pm @ 407:c6e90e02dd17 ref20150831

renamed Lib->lib
author cin
date Fri, 04 Sep 2015 19:40:23 +0300
parents
children 9335cf010b23
line wrap: on
line source

package IMPL::Test::Result;
use strict;
use warnings;

use parent qw(IMPL::Object IMPL::Object::Autofill IMPL::Object::Serializable);
use IMPL::Class::Property;

__PACKAGE__->PassThroughArgs;

use constant {
    SUCCESS => 0,
    FAIL => 1,
    ERROR => 2
};

BEGIN {
    public property Name => prop_all;
    public property State => prop_all;
    public property Exception => prop_all;
    public property TimeExclusive => prop_all;
    public property TimeInclusive => prop_all;
}

sub CTOR {
    my ($this) = @_;
    
    $this->TimeInclusive(0) unless defined $this->TimeInclusive;
    $this->TimeExclusive(0) unless defined $this->TimeExclusive;
}


1;