| 8 | } |
| 9 | |
| 10 | static lcf::DBBitArray MakeAttributeSet(std::initializer_list<bool> v = {}) { |
| 11 | auto a = lcf::DBBitArray(lcf::Data::attributes.size()); |
| 12 | int idx = 0; |
| 13 | for (auto b: v) { |
| 14 | a[idx++] = b; |
| 15 | } |
| 16 | return a; |
| 17 | } |
| 18 | |
| 19 | TEST_SUITE_BEGIN("Attribute"); |
| 20 |
no test coverage detected