summaryrefslogtreecommitdiff
path: root/core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala')
-rwxr-xr-xcore/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala94
1 files changed, 46 insertions, 48 deletions
diff --git a/core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala b/core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala
index 20d1b2e..ec1e7b2 100755
--- a/core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala
+++ b/core/source/test/scala/com/rockymadden/stringmetric/similarity/OverlapMetricSpec.scala
@@ -5,60 +5,58 @@ import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner
@RunWith(classOf[JUnitRunner])
-final class OverlapMetricSpec extends ScalaTest {
- "OverlapMetric" should provide {
- "compare method" when passed {
- "empty arguments" should returns {
- "None" in {
- OverlapMetric(1).compare("", "").isDefined should be (false)
- OverlapMetric(1).compare("abc", "").isDefined should be (false)
- OverlapMetric(1).compare("", "xyz").isDefined should be (false)
- }
+final class OverlapMetricSpec extends ScalaTest { "OverlapMetric" should provide {
+ "compare method" when passed {
+ "empty arguments" should returns {
+ "None" in {
+ OverlapMetric(1).compare("", "").isDefined should be (false)
+ OverlapMetric(1).compare("abc", "").isDefined should be (false)
+ OverlapMetric(1).compare("", "xyz").isDefined should be (false)
}
- "equal arguments" should returns {
- "1" in {
- OverlapMetric(1).compare("abc", "abc").get should be (1)
- OverlapMetric(2).compare("abc", "abc").get should be (1)
- OverlapMetric(3).compare("abc", "abc").get should be (1)
- }
+ }
+ "equal arguments" should returns {
+ "1" in {
+ OverlapMetric(1).compare("abc", "abc").get should be (1)
+ OverlapMetric(2).compare("abc", "abc").get should be (1)
+ OverlapMetric(3).compare("abc", "abc").get should be (1)
}
- "unequal arguments" should returns {
- "0" in {
- OverlapMetric(1).compare("abc", "xyz").get should be (0)
- OverlapMetric(2).compare("abc", "xyz").get should be (0)
- OverlapMetric(3).compare("abc", "xyz").get should be (0)
- }
+ }
+ "unequal arguments" should returns {
+ "0" in {
+ OverlapMetric(1).compare("abc", "xyz").get should be (0)
+ OverlapMetric(2).compare("abc", "xyz").get should be (0)
+ OverlapMetric(3).compare("abc", "xyz").get should be (0)
}
- "invalid arguments" should returns {
- "None" in {
- OverlapMetric(2).compare("n", "naght").isDefined should be (false)
- OverlapMetric(2).compare("night", "n").isDefined should be (false)
- OverlapMetric(3).compare("ni", "naght").isDefined should be (false)
- OverlapMetric(3).compare("night", "na").isDefined should be (false)
- }
+ }
+ "invalid arguments" should returns {
+ "None" in {
+ OverlapMetric(2).compare("n", "naght").isDefined should be (false)
+ OverlapMetric(2).compare("night", "n").isDefined should be (false)
+ OverlapMetric(3).compare("ni", "naght").isDefined should be (false)
+ OverlapMetric(3).compare("night", "na").isDefined should be (false)
}
- "valid arguments" should returns {
- "Double indicating distance" in {
- OverlapMetric(1).compare("bob", "bobman").get should be (1)
- OverlapMetric(1).compare("bob", "manbobman").get should be (1)
- OverlapMetric(1).compare("night", "nacht").get should be (0.6)
- OverlapMetric(1).compare("night", "naght").get should be (0.8)
- OverlapMetric(1).compare("context", "contact").get should be (0.7142857142857143)
+ }
+ "valid arguments" should returns {
+ "Double indicating distance" in {
+ OverlapMetric(1).compare("bob", "bobman").get should be (1)
+ OverlapMetric(1).compare("bob", "manbobman").get should be (1)
+ OverlapMetric(1).compare("night", "nacht").get should be (0.6)
+ OverlapMetric(1).compare("night", "naght").get should be (0.8)
+ OverlapMetric(1).compare("context", "contact").get should be (0.7142857142857143)
- OverlapMetric(2).compare("night", "nacht").get should be (0.25)
- OverlapMetric(2).compare("night", "naght").get should be (0.5)
- OverlapMetric(2).compare("context", "contact").get should be (0.5)
- OverlapMetric(2).compare("contextcontext", "contact").get should be (0.5)
- OverlapMetric(2).compare("context", "contactcontact").get should be (0.5)
- OverlapMetric(2).compare("ht", "nacht").get should be (1)
- OverlapMetric(2).compare("xp", "nacht").get should be (0)
- OverlapMetric(2).compare("ht", "hththt").get should be (1)
+ OverlapMetric(2).compare("night", "nacht").get should be (0.25)
+ OverlapMetric(2).compare("night", "naght").get should be (0.5)
+ OverlapMetric(2).compare("context", "contact").get should be (0.5)
+ OverlapMetric(2).compare("contextcontext", "contact").get should be (0.5)
+ OverlapMetric(2).compare("context", "contactcontact").get should be (0.5)
+ OverlapMetric(2).compare("ht", "nacht").get should be (1)
+ OverlapMetric(2).compare("xp", "nacht").get should be (0)
+ OverlapMetric(2).compare("ht", "hththt").get should be (1)
- OverlapMetric(3).compare("night", "nacht").get should be (0)
- OverlapMetric(3).compare("night", "naght").get should be (0.3333333333333333)
- OverlapMetric(3).compare("context", "contact").get should be (0.4)
- }
+ OverlapMetric(3).compare("night", "nacht").get should be (0)
+ OverlapMetric(3).compare("night", "naght").get should be (0.3333333333333333)
+ OverlapMetric(3).compare("context", "contact").get should be (0.4)
}
}
}
-}
+}}