()
| 62 | |
| 63 | |
| 64 | def test_float_method(): |
| 65 | mesh = create_unit_cube(MPI.COMM_WORLD, 2, 2, 2) |
| 66 | a = 1.0 |
| 67 | c0 = Constant(mesh, a) |
| 68 | assert a == float(c0) # /NOSONAR |
| 69 | |
| 70 | |
| 71 | def test_complex_method(): |
nothing calls this directly
no test coverage detected