Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
eiquadprog
Commits
b64bde53
Commit
b64bde53
authored
Sep 16, 2019
by
Gabriele Buondonno
Browse files
[unittest] [eiquadprog-fast] Dummy unit test
parent
4581f294
Changes
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
b64bde53
...
...
@@ -43,6 +43,7 @@ ADD_REQUIRED_DEPENDENCY("eigen3")
# Add headers here if any
SET
(
${
PROJECT_NAME
}
_HEADERS
include/eiquadprog/eiquadprog.hpp
include/eiquadprog/eiquadprog-fast.hpp
)
INSTALL
(
FILES
...
...
unittest/CMakeLists.txt
View file @
b64bde53
...
...
@@ -2,6 +2,7 @@
#test paths and names (without .cpp extension)
SET
(
TESTS
eiquadprog-basic
eiquadprog-fast
)
# --- MACROS ------------------------------------------------------------------
...
...
unittest/eiquadprog-fast.cpp
0 → 100644
View file @
b64bde53
#include
<iostream>
#include
<Eigen/Core>
#include
<boost/test/unit_test.hpp>
#include
"eiquadprog/eiquadprog-fast.hpp"
BOOST_AUTO_TEST_SUITE
(
BOOST_TEST_MODULE
)
// min ||x||^2
BOOST_AUTO_TEST_CASE
(
test_unbiased
)
{
std
::
cout
<<
"Ok"
<<
std
::
endl
;
BOOST_CHECK
(
true
);
}
BOOST_AUTO_TEST_SUITE_END
()
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