Add more tests for trust page
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / test / Guava.kt
1 package net.pterodactylus.sone.test
2
3 import com.google.common.base.Optional
4 import com.google.common.base.Optional.absent
5 import com.google.common.base.Optional.of
6
7 fun <T> T?.asOptional(): Optional<T> = if (this == null) absent<T>() else of(this)