awips2/tests/python/gfe/TestAbsTime.py
David Gillingham 28e5aaabca Issue #2307: Remove calls to PythonScript constructor without ClassLoader
argument, fix IscMosaic.

Change-Id: Iff29b2790fd1c6d5f5b829f6b35ff31829cdc907

Former-commit-id: e526e7a82c [formerly 85609a4bf9072ae41dbafbc1b874efbcd5bd21a4]
Former-commit-id: 47878a4318
2013-09-06 10:16:31 -05:00

29 lines
No EOL
1,008 B
Python

##
# This software was developed and / or modified by Raytheon Company,
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
#
# U.S. EXPORT CONTROLLED TECHNICAL DATA
# This software product contains export-restricted data whose
# export/transfer/disclosure is restricted by U.S. law. Dissemination
# to non-U.S. persons whether in the United States or abroad requires
# an export license or other authorization.
#
# Contractor Name: Raytheon Company
# Contractor Address: 6825 Pine Street, Suite 340
# Mail Stop B8
# Omaha, NE 68106
# 402.291.0100
#
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
# further licensing information.
##
from AbsTime import current
from AbsTime import AbsTime
from TimeRange import TimeRange
def testAbsTimeZero():
start = AbsTime(0)
end = current()
timeRange = TimeRange(start, end)
javaTR = timeRange.toJavaObj()
return javaTR