()
| 12 | assert pytest.approx(a) == pytest.approx(b) |
| 13 | |
| 14 | def create_polygon(): |
| 15 | poly = f2c.Cell(); |
| 16 | line = f2c.LinearRing(); |
| 17 | line.addPoint(-10, 0); |
| 18 | line.addPoint(-10, 20); |
| 19 | line.addPoint(10, 20); |
| 20 | line.addPoint(10, 0); |
| 21 | line.addPoint(-10, 0); |
| 22 | poly.addRing(line); |
| 23 | return poly; |
| 24 | |
| 25 | def test_fields2cover_utils_visualizer_plotCell(): |
| 26 | line1 = f2c.LineString(); |
no test coverage detected