(label, text, symbol_text, subscript)
| 33 | |
| 34 | @pytest.mark.parametrize('label, text, symbol_text, subscript', examples) |
| 35 | def test_with_subexpr(label, text, symbol_text, subscript): |
| 36 | assert_equal(text + '_' + subscript, Symbol(symbol_text + '_' + subscript, real=True)) |
| 37 | |
| 38 | |
| 39 | @pytest.mark.parametrize('label, text, symbol_text, subscript', examples) |
nothing calls this directly
no test coverage detected