- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在试用 scala 和 quill (getquill.io)。下面这个最小的例子无法编译。这是为什么?它只定义一个类。我怀疑我需要以某种方式标记这个类,以便 quill 能够解析它,但我不知道如何。我被 quill over slick 所吸引,因为我不必标记案例类,它们应该可以正常工作,对吗?
package dbquerytest
import io.getquill._
/*in a real life you would rather pass execution context as
a method or constructor argument, but we're just playing*/
import scala.concurrent.ExecutionContext.Implicits.global
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
case class Intake( id:Int, path:String, stage:Int) // , timestamp: Instant
// running/using junit test:https://alvinalexander.com/scala/how-to-use-junit-testing-with-scala
class MysqlLocalDbTest {
@Test
def testIntake={
val ctx = new MysqlAsyncContext(SnakeCase, "testdb")
import ctx._
val intakes = quote { query[Intake].map(_.id )}
ctx.run(intakes).map(_.headOption)
assertEquals(0,0)
}
}
编译在 io.getquill.quotation.Parsing 处失败。
最佳答案
首先,我可以看到您在代码片段中使用的是 JUnit 5,但似乎存在一些问题。在 Scala 和 sbt 中使用 JUnit 5:https://github.com/sbt/junit-interface/issues/75 .替代方案包括使用 JUnit 4 或 ScalaTest 或 specs2 等特定于 Scala 的测试库之一(ScalaCheck 也值得一提,尽管我通常只将它与 ScalaTest 或 specs2 结合使用)。
其次,我不知道你用的是哪个构建工具,如果你里面有所有相关的依赖,这可能是编译错误的原因。如果您使用的是 sbt ( https://www.scala-sbt.org/ ),我认为这是使用 Scala 进行开发时最常用的构建工具,一个可能的示例可以说明您的示例的外观(使用 JUnit 4):
构建.sbt:
import Dependencies._
ThisBuild / scalaVersion := "2.12.8"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "quilltesting",
libraryDependencies ++= Seq(
"mysql" % "mysql-connector-java" % "8.0.15",
"io.getquill" %% "quill-jdbc" % "3.1.0",
"io.getquill" %% "quill-async-mysql" % "3.1.0",
// JUnit 4.
"com.novocode" % "junit-interface" % "0.11" % Test
)
)
要从头开始生成一个快速项目以使用 sbt 进行测试,请在某处创建一个新文件夹,从命令行进入该文件夹并运行 sbt new sbt/scala-seed.g8
。然后进入文件夹,运行sbt
。之后,运行 test
。
我已将您的示例更改为使用 JUnit 4,它似乎可以编译并运行:
package dbquerytest
import io.getquill._
/*in a real life you would rather pass execution context as
a method or constructor argument, but we're just playing*/
import scala.concurrent.ExecutionContext.Implicits.global
import org.junit.Test
import junit.framework.TestCase
import org.junit.Assert._
case class Intake( id:Int, path:String, stage:Int)
// running/using junit test:https://alvinalexander.com/scala/how-to-use-junit-testing-with-scala
class MysqlLocalDbTest {
@Test
def testIntake = {
val ctx = new MysqlAsyncContext(SnakeCase, "testdb")
import ctx._
val intakes = quote { query[Intake].map(_.id )}
ctx.run(intakes).map(_.headOption)
assertEquals(0,0)
}
}
如果你想尝试一些其他的例子,还有https://scastie.scala-lang.org/QwOewNEiR3mFlKIM7v900A , 如链接到 https://getquill.io/#quotation-introduction .
关于scala - 为什么这个简单的羽毛笔引述无法编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55870866/
我是一名优秀的程序员,十分优秀!