#!/usr/bin/env python
import pywbem
import unittest
import sys
import os
import math
import time
import commands
from socket import getfqdn
from time import sleep
sys.path.append(os.path.join(os.getcwd(), "lib"))
import wbem_connection
import EnhancedTestCase
class OMC_LogicalFile_Test(EnhancedTestCase.EnhTestCase):
def setUp(self):
unittest.TestCase.setUp(self)
wconn = wbem_connection.wbem_connection()
self._conn = wconn.get_wbem_connection()
self._orig_hostname = getfqdn()
def tearDown(self):
unittest.TestCase.tearDown(self)
def get_unit_test():
return (OMC_LogicalFile_Test)
if __name__ == '__main__':
suite = unittest.makeSuite(OMC_LogicalFile_Test)
unittest.TextTestRunner(verbosity=2).run(suite)