Lines Matching full:results
33 """Do the curve conversion ahead of time, and run tests on results."""
50 cls.results = []
56 for tag, results in cls.results:
60 for k, v in sorted(results.items()))))
63 """Tests that the results of conversion haven't changed since the time
77 results = collections.defaultdict(int)
80 results[n] += 1
81 self.assertEqual(results, expected)
82 self.results.append(('single spline lengths', results))
85 """Test that conversion results are unchanged for multiple curves."""
93 results = collections.defaultdict(int)
98 'Got incompatible conversion results')
99 results[n] += 1
100 self.assertEqual(results, expected)
101 self.results.append(('compatible spline lengths', results))
104 """Test that conversion results do not exceed given error tolerance."""
106 results = collections.defaultdict(int)
108 results[round(error, 1)] += 1
110 self.results.append(('single errors', results))
115 results = collections.defaultdict(int)
118 results[round(error, 1)] += 1
120 self.results.append(('compatible errors', results))