| 115 | |
| 116 | template <typename T> |
| 117 | void addInputToInputCorpus(std::set<T>& inputCorpus, const T& newInput) { |
| 118 | inputCorpus.insert(newInput); |
| 119 | } |
| 120 | |
| 121 | // Generate random values for the different supported types. |
| 122 | template <typename T> |
no test coverage detected