(self)
| 3029 | """Test FuncDeclRef.name(), .arity(), .domain(), .range().""" |
| 3030 | |
| 3031 | def test_name(self): |
| 3032 | f = Function("myFunc", IntSort(), BoolSort()) |
| 3033 | assert f.name() == "myFunc" |
| 3034 | |
| 3035 | def test_arity(self): |
| 3036 | f = Function("f", IntSort(), IntSort(), BoolSort()) |