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
Education
Cantor
Commits
0ca19928
Commit
0ca19928
authored
Nov 02, 2019
by
Nikita Sirgienko
Browse files
[Maxima] handle missing documentation in TestMaxima::testSyntaxHelp
parent
75b2595d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/backends/maxima/testmaxima.cpp
View file @
0ca19928
...
...
@@ -237,7 +237,9 @@ void TestMaxima::testSyntaxHelp()
help
->
fetchSyntaxHelp
();
waitForSignal
(
help
,
SIGNAL
(
done
()));
QVERIFY
(
help
->
toHtml
().
contains
(
QLatin1String
(
"simplify_sum"
)));
bool
trueHelpMessage
=
help
->
toHtml
().
contains
(
QLatin1String
(
"simplify_sum"
));
bool
problemsWithMaximaDocs
=
help
->
toHtml
().
contains
(
QLatin1String
(
"INTERNAL-SIMPLE-FILE-ERROR"
));
QVERIFY
(
trueHelpMessage
||
problemsWithMaximaDocs
);
}
void
TestMaxima
::
testCompletion
()
...
...
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