Skip to content

Commit b0590dc

Browse files
committed
Added some documentation
1 parent 8ce876a commit b0590dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/kotlin/in/rcard/assertj/arrowcore/OptionAssert.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ package `in`.rcard.assertj.arrowcore
22

33
import arrow.core.Option
44

5+
/**
6+
* Assertions for [Option].
7+
*
8+
* @param VALUE type of the value contained in the [Option].
9+
* @author Riccardo Cardin
10+
*/
511
class OptionAssert<VALUE : Any>(option: Option<VALUE>?) :
612
AbstractOptionAssert<OptionAssert<VALUE>, VALUE>(option) {
713
companion object {

0 commit comments

Comments
 (0)