Renaming from McTest to DeepState.

This commit is contained in:
Peter Goodman
2017-11-01 13:38:32 -04:00
parent f7f029965b
commit d2bc82fc35
27 changed files with 1325 additions and 1337 deletions

View File

@@ -14,13 +14,12 @@
* limitations under the License.
*/
#include <mctest/McUnit.hpp>
#include <mctest/Quantified.hpp>
#include <deepstate/DeepState.hpp>
#include <algorithm>
#include <vector>
using namespace mctest;
using namespace deepstate;
TEST(Vector, DoubleReversal) {
ForAll<std::vector<int>>([] (const std::vector<int> &vec1) {
@@ -33,5 +32,5 @@ TEST(Vector, DoubleReversal) {
}
int main(void) {
McTest_Run();
DeepState_Run();
}