We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ce876a commit b0590dcCopy full SHA for b0590dc
src/main/kotlin/in/rcard/assertj/arrowcore/OptionAssert.kt
@@ -2,6 +2,12 @@ package `in`.rcard.assertj.arrowcore
2
3
import arrow.core.Option
4
5
+/**
6
+ * Assertions for [Option].
7
+ *
8
+ * @param VALUE type of the value contained in the [Option].
9
+ * @author Riccardo Cardin
10
+ */
11
class OptionAssert<VALUE : Any>(option: Option<VALUE>?) :
12
AbstractOptionAssert<OptionAssert<VALUE>, VALUE>(option) {
13
companion object {
0 commit comments