Coverage for tests/testStringCount.py : 42%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
metric = metrics.StringCountMetric() data = np.array(['a', 'a', 'b', 'c', '', '', '']) dt = np.dtype([('filter', np.str_, 1)]) data.dtype = dt result = metric.run(data) # Check that the metricValue is correct expected_results = {'a': 2, 'b': 1, 'c': 1, 'blank': 3} for key in expected_results: assert(result[key] == expected_results[key])
# Check that the reduce functions got made and return expected result for key in expected_results: assert(metric.reduceFuncs[key](result) == expected_results[key])
lsst.utils.tests.init()
lsst.utils.tests.init() unittest.main() |