U

UT_DSL

ScenarLang is a domain specific language (DSL) that attempts to make it even easier to setup (unit) tests with mockito. What it offers is : => A json like notation to declare your java objects (that way it is less boring to configure deeply nested data structure for your tests). => A declarative way configure what the result of a mock call should be.
https://sourceforge.net/p/scenarlang
GNU Lesser General Public License
ponchy
文件下载
文件名 操作
UT_DSL-1.1.9.pom 下载
Apache Maven
<dependency>
  <groupId>net.sourceforge.scenarlang</groupId>
  <artifactId>UT_DSL</artifactId>
  <version>1.1.9</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'net.sourceforge.scenarlang:UT_DSL:1.1.9'
Gradle Kotlin
implementation("net.sourceforge.scenarlang:UT_DSL:1.1.9")
Scala SBT
libraryDependencies += "net.sourceforge.scenarlang" % "UT_DSL" % "1.1.9"
Groovy Grape
@Grapes(
  @Grab(group='net.sourceforge.scenarlang', module='UT_DSL', version='1.1.9')
)
Apache Ivy
<dependency org="net.sourceforge.scenarlang" name="UT_DSL" rev="1.1.9" />
Leiningen
[net.sourceforge.scenarlang/UT_DSL "1.1.9"]
Apache Buildr
'net.sourceforge.scenarlang:UT_DSL:jar:1.1.9'