Concordion Study Guide 2026
Everything you need to pass the Concordion exam in one place: the exam format, every topic to study, real practice questions with explanations, flashcards, and full-length practice tests. Free, no sign-up needed.
📚 Concordion Topics to Study (21)
✍️ Sample Concordion Questions & Answers
1. What colour does Concordion use to highlight a passing test element in the output report?
Concordion colours passing assertions green in the rendered HTML output report.
2. What should a fixture method return when used with concordion:verifyRows?
concordion:verifyRows expects the fixture method to return an Iterable so Concordion can iterate and compare each item.
3. A Concordion spec is described as 'active' documentation. What does 'active' mean?
'Active' means the HTML document is executed as an automated test, so it only remains accurate while the tests pass.
4. What access modifier should Concordion fixture methods have?
Fixture methods must be public so Concordion can invoke them reflectively from the specification commands.
5. How does Concordion match a specification file to its fixture class?
Concordion derives the spec path from the fixture class name and package, looking for a matching HTML file on the classpath.
6. What is a common antipattern when writing Concordion specs?
Embedding implementation details in specs couples the documentation to internals, making specs fragile and harder for stakeholders to read.