blob: e088bf6f1f366d3d96f462b8c29fd274663ae14f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)
{
}
|