summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI_4507.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/resources/SI_4507.scala')
-rw-r--r--test/scaladoc/resources/SI_4507.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/scaladoc/resources/SI_4507.scala b/test/scaladoc/resources/SI_4507.scala
new file mode 100644
index 0000000000..5b8ed9cd35
--- /dev/null
+++ b/test/scaladoc/resources/SI_4507.scala
@@ -0,0 +1,19 @@
+/**
+ * <pre>
+ * scala> (new AndOrSpec).execute()
+ * AndOrSpec:
+ * The ScalaTest Matchers DSL
+ * should provide
+ * an and operator that
+ * - returns silently when evaluating true and true
+ * - throws a TestFailedException when evaluating true and false
+ * - that throws a TestFailedException when evaluating false and true
+ * - throws a TestFailedException when evaluating false and false
+ * an or operator that
+ * - returns silently when evaluating true or true
+ * - returns silently when evaluating true or false
+ * - returns silently when evaluating false or true
+ * - throws a TestFailedException when evaluating false or false
+ * </pre>
+ */
+class SI_4507