Я пытаюсь запустить следующий юнит-тест на Scala.Я получаю тестовый класс ошибки не найден: mainFolder.TestDictionary
Вот как выглядит мой каталог:
src
|_ mainFolder
| |_ Dictionary.scala
|_ testing
|_ TestDictionary.scala
Вот мой TestDictionary.scala
Код модульного тестирования
package testing
import org.scalatest._
import mainFolder.Dictionary
class TestDictionary extends FunSuite {
test("Use many test cases for many category"){
val test1 = "CAT"
val test2 = "BAT"
val test3 = "DIAMOND"
val test4 = "THOUSAND"
val test5 = ""
val test6 = "HALF"
val test7 = "PHOTOGRAPH"
val test8 = "STAFF"
assert(Dictionary.isSounds(test1, test2) == true)
assert(Dictionary.isSounds(test5, test7) == true)
assert(Dictionary.isSounds(test4, test5) == true)
assert(Dictionary.isSounds(test5, test8) == true)
assert(Dictionary.isSounds(test3, test2) == true)
assert(Dictionary.isSounds(test4, test1) == true)
assert(Dictionary.isSounds(test1, test8) == true)
assert(Dictionary.isSounds(test8, test3) == true)
assert(Dictionary.isSounds(test5, test6) == true)
assert(Dictionary.isSounds(test8, test2) == true)
}
}