buildframework/helium/tools/common/python/lib/test/test_ido.py
changeset 179 d8ac696cc51f
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 #============================================================================ 
       
     2 #Name        : test_ido.py 
       
     3 #Part of     : Helium 
       
     4 
       
     5 #Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     6 #All rights reserved.
       
     7 #This component and the accompanying materials are made available
       
     8 #under the terms of the License "Eclipse Public License v1.0"
       
     9 #which accompanies this distribution, and is available
       
    10 #at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    11 #
       
    12 #Initial Contributors:
       
    13 #Nokia Corporation - initial contribution.
       
    14 #
       
    15 #Contributors:
       
    16 #
       
    17 #Description:
       
    18 #===============================================================================
       
    19 
       
    20 import unittest
       
    21 import ido
       
    22 import logging
       
    23 
       
    24 _logger = logging.getLogger('test.ido')
       
    25 logging.basicConfig(level=logging.INFO)
       
    26 
       
    27 class IDOTest(unittest.TestCase):
       
    28         
       
    29     def test_ido(self):
       
    30         ido.is_in_interval(1, '01:02', 2, '02:03')