| 102 | |
| 103 | template <typename T> |
| 104 | void clearInputCorpus(std::set<T>& inputCorpus) { |
| 105 | inputCorpus.clear(); |
| 106 | BOLT_CHECK_EQ(inputCorpus.size(), 0); |
| 107 | } |
| 108 | |
| 109 | template <typename T> |
| 110 | T getInputFromInputCorpus(const std::set<T>& inputCorpus, const size_t& index) { |
no test coverage detected