def setUpClass(cls):
     token = environ.get('KB_AUTH_TOKEN', None)
     cls.ctx = {'token': token, 'provenance': [{'service': 'nlh_test_psd_count_contigs',
         'method': 'please_never_use_it_in_production', 'method_params': []}],
         'authenticated': 1}
     config_file = environ.get('KB_DEPLOYMENT_CONFIG', None)
     cls.cfg = {}
     config = ConfigParser()
     config.read(config_file)
     for nameval in config.items('nlh_test_psd_count_contigs'):
         cls.cfg[nameval[0]] = nameval[1]
     cls.wsURL = cls.cfg['workspace-url']
     cls.wsClient = workspaceService(cls.wsURL, token=token)
     cls.serviceImpl = nlh_test_psd_count_contigs(cls.cfg)