Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olena
pylene
Commits
ac05b6d4
Commit
ac05b6d4
authored
Dec 11, 2018
by
Michaël Roynard
Browse files
Remove useless test
parent
21002d40
Pipeline
#12537
passed with stages
in 13 minutes and 51 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/core/CMakeLists.txt
View file @
ac05b6d4
...
...
@@ -37,9 +37,6 @@ add_core_test(${test_prefix}sliding_wpiter neighborhood/sliding_wpiter.cpp)
add_core_test
(
${
test_prefix
}
sliding_wpixter neighborhood/sliding_wpixter.cpp
)
add_core_test
(
${
test_prefix
}
wneighborhood neighborhood/wneighborhood.cpp
)
# test Pixel
add_core_test
(
${
test_prefix
}
pixel_ndpixel pixel/ndpixel.cpp
)
# test Extension
add_core_test
(
${
test_prefix
}
extension_fill extension/fill.cpp
)
...
...
tests/core/pixel/ndpixel.cpp
deleted
100644 → 0
View file @
21002d40
#include <mln/core/image/ndimage_pixel.hpp>
#include <mln/core/concept/new/pixels.hpp>
#include <type_traits>
#include <gtest/gtest.h>
namespace
concepts
=
mln
::
concepts
;
struct
mock_image
{
};
TEST
(
Pixel
,
NdPixel
)
{
[[
maybe_unused
]]
auto
pix
=
mln
::
ndimage_pixel
<
int
,
3
,
mock_image
>
{};
#ifdef PYLENE_CONCEPT_TS_ENABLED
static_assert
(
concepts
::
Pixel
<
decltype
(
pix
)
>
);
#endif // PYLENE_CONCEPT_TS_ENABLED
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment