| 508 | } |
| 509 | |
| 510 | void test_copy_manager( geode::AttributeManager& manager ) |
| 511 | { |
| 512 | geode::AttributeManager manager2; |
| 513 | manager2.copy( manager ); |
| 514 | manager2.reserve( 15 ); |
| 515 | test_attribute_types( manager2 ); |
| 516 | test_number_of_attributes( manager2, 8 ); |
| 517 | } |
| 518 | |
| 519 | void test_import_manager( geode::AttributeManager& manager ) |
| 520 | { |
no test coverage detected