diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 19:46:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 19:46:30 +0100 |
| commit | b960d11ea2fca1d0a4babc61aadfc14b94f8e09b (patch) | |
| tree | 5d93465913fc51de33424274a14e2c839305c6fa | |
| parent | e6d4517817a1e59a63932109e39b888257fb72a1 (diff) | |
| parent | c04caf00cb62aaecaaa930b622a06af4b1d7e92b (diff) | |
Merge pull request #4 from ocl-foss-org/unit-tests-expansion
[CHORE] Updating and adding unit tests.
| -rw-r--r-- | test/rope_test/crope.pred.test.cpp | 2 | ||||
| -rw-r--r-- | test/rope_test/crope.pred2.test.cpp | 24 |
2 files changed, 25 insertions, 1 deletions
diff --git a/test/rope_test/crope.pred.test.cpp b/test/rope_test/crope.pred.test.cpp index a967adb..5613bc3 100644 --- a/test/rope_test/crope.pred.test.cpp +++ b/test/rope_test/crope.pred.test.cpp @@ -2,7 +2,7 @@ * File: crope.pred.test.cpp * Purpose: Char rope test. * Author: Amlal El Mahrouss (amlal@nekernel.org) - * Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License. + * Copyright 2025-2026, Amlal El Mahrouss, licensed under the Boost Software License. */ #include <ocl/tproc/rope.hpp> diff --git a/test/rope_test/crope.pred2.test.cpp b/test/rope_test/crope.pred2.test.cpp new file mode 100644 index 0000000..e088bf6 --- /dev/null +++ b/test/rope_test/crope.pred2.test.cpp @@ -0,0 +1,24 @@ +/* + * File: crope.pred.test.cpp + * Purpose: Char rope test. + * Author: Amlal El Mahrouss (amlal@nekernel.org) + * Copyright 2026, Amlal El Mahrouss, licensed under the Boost Software License. + */ + +#include <ocl/tproc/rope.hpp> +#include <memory> +#include <iostream> + +#define BOOST_TEST_MODULE crope_pred +#include <boost/test/included/unit_test.hpp> + +#ifndef STANDALONE +using namespace ocl; +#else +using namespace boost; +#endif + +BOOST_AUTO_TEST_CASE(rope_should_succeed_in_find_pred) +{ + +} |
