b

bpelunit

BPEL has become the defacto standard language for composing Web services. However, as every other programming language developers can introduce defects into the code that can lead to undesired consequences when the software is rolled out at the client-side. Therefore, all software development methodologies include testing as one of the important activities. For nearly every programming language, a unit testing framework exists, for example JUnit for Java. These testing frameworks allow developers to easily test small chunks of the code that they have written. Until recently, BPEL lacked such support. However, BPELUnit was developed for closing this gap.
http://www.bpelunit.net/
Eclipse Public License - v 1.0
Leibniz Universität Hannover
Daniel Lübke Antonio García Domínguez
文件下载
文件名 操作
bpelunit-1.6.0.pom 下载
Apache Maven
<dependency>
  <groupId>net.bpelunit</groupId>
  <artifactId>bpelunit</artifactId>
  <version>1.6.0</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'net.bpelunit:bpelunit:1.6.0'
Gradle Kotlin
implementation("net.bpelunit:bpelunit:1.6.0")
Scala SBT
libraryDependencies += "net.bpelunit" % "bpelunit" % "1.6.0"
Groovy Grape
@Grapes(
  @Grab(group='net.bpelunit', module='bpelunit', version='1.6.0')
)
Apache Ivy
<dependency org="net.bpelunit" name="bpelunit" rev="1.6.0" />
Leiningen
[net.bpelunit/bpelunit "1.6.0"]
Apache Buildr
'net.bpelunit:bpelunit:jar:1.6.0'