diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:37:42 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 12:37:42 -0400 |
| commit | 8c08151643329be88fa8f45c72a7b4c7c30ce218 (patch) | |
| tree | 164f38a34b7790fef0de35b7786613632e5fc18b /tests/de_tier_tomb.cpp | |
| parent | 730fc4e9bae5a157c83db8061c2c6831a297e959 (diff) | |
| download | dynamic-extension-8c08151643329be88fa8f45c72a7b4c7c30ce218.tar.gz | |
Adjusted DE tests to cover all policy configurations
Diffstat (limited to 'tests/de_tier_tomb.cpp')
| -rw-r--r-- | tests/de_tier_tomb.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/de_tier_tomb.cpp b/tests/de_tier_tomb.cpp new file mode 100644 index 0000000..82942fd --- /dev/null +++ b/tests/de_tier_tomb.cpp @@ -0,0 +1,25 @@ +/* + * tests/dynamic_extension_tests.cpp + * + * Unit tests for Dynamic Extension Framework + * + * Copyright (C) 2023 Douglas Rumbaugh <drumbaugh@psu.edu> + * Dong Xie <dongx@psu.edu> + * + * All rights reserved. Published under the Modified BSD License. + * + */ +#include <set> +#include <random> +#include <algorithm> + +#include "testing.h" +#include "framework/DynamicExtension.h" +#include "shard/WIRS.h" + +#include <check.h> +using namespace de; + +typedef DynamicExtension<WRec, WIRS<WRec>, WIRSQuery<WRec>, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE> DE; + +#include "dynamic_extension_tests.inc" |