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
Guilhem Saurel
ndcurves
Commits
73a80cb7
Commit
73a80cb7
authored
Sep 28, 2020
by
Steve T
Browse files
[TEST FIX] Uncomment commented tests
parent
8d5e628d
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/Main.cpp
View file @
73a80cb7
...
...
@@ -2886,7 +2886,7 @@ void testOperatorEqual(bool& error) {
int
main
(
int
/*argc*/
,
char
**
/*argv[]*/
)
{
std
::
cout
<<
"performing tests...
\n
"
;
bool
error
=
false
;
/*
PolynomialCubicFunctionTest(error);
PolynomialCubicFunctionTest
(
error
);
ExactCubicNoErrorTest
(
error
);
ExactCubicPointsCrossedTest
(
error
);
// checks that given wayPoints are crossed
ExactCubicTwoPointsTest
(
error
);
...
...
@@ -2903,9 +2903,9 @@ int main(int /*argc*/, char** /*argv[]*/) {
BezierCurveTestCompareHornerAndBernstein
(
error
);
BezierDerivativeCurveTimeReparametrizationTest
(
error
);
BezierEvalDeCasteljau
(
error
);
BezierSplitCurve(error);
*/
BezierSplitCurve
(
error
);
BezierElevate
(
error
);
/*
CubicHermitePairsPositionDerivativeTest(error);
CubicHermitePairsPositionDerivativeTest
(
error
);
piecewiseCurveTest
(
error
);
PiecewisePolynomialCurveFromDiscretePoints
(
error
);
PiecewisePolynomialCurveFromFile
(
error
);
...
...
@@ -2923,7 +2923,7 @@ int main(int /*argc*/, char** /*argv[]*/) {
BezierLinearProblemsetup_control_pointsVarCombinatorialEnd
(
error
);
BezierLinearProblemsetup_control_pointsVarCombinatorialMix
(
error
);
BezierLinearProblemsetupLoadProblem
(
error
);
testOperatorEqual(error);
*/
testOperatorEqual
(
error
);
if
(
error
)
{
std
::
cout
<<
"There were some errors
\n
"
;
...
...
Write
Preview
Markdown
is supported
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