组织ID: |
net.sourceforge.jwebunit |
项目ID: |
jwebunit-core |
版本: |
3.1 |
最后修改时间: |
2018-11-21 17:55:53 |
包类型: |
jar |
标题: |
Core - API |
描述: |
The core API of JWebUnit. Define how tests should be written and interface for testing engines.
|
大小: |
63.83KB |
|
Maven引入代码: |
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-core</artifactId>
<version>3.1</version>
</dependency>
|
Gradle引入代码: |
net.sourceforge.jwebunit:jwebunit-core:3.1
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jwebunit-core</artifactId>
<name>Core - API</name>
<description>
The core API of JWebUnit. Define how tests should be written and interface for testing engines.
</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>regexp</groupId>
<artifactId>regexp</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<properties>
<topDirectoryLocation>..</topDirectoryLocation>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-webtestcase</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
</mainClass>
</configuration>
</execution>
<execution>
<id>generate-jwebunit</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>
net.sourceforge.jwebunit.javacc.JWebUnitGenerator
</mainClass>
</configuration>
</execution>
</executions>
<configuration>
<sourceRoot>
${project.build.directory}/generated-sources/main/java
</sourceRoot>
<arguments>
<argument>${basedir}/src/main/java</argument>
<argument>
${project.build.directory}/generated-sources/main/java
</argument>
</arguments>
<includePluginDependencies>
true
</includePluginDependencies>
<includeProjectDependencies>
false
</includeProjectDependencies>
</configuration>
<dependencies>
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-code-generator</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
net.sourceforge.jwebunit.junit.WebTester.class
net.sourceforge.jwebunit.junit.JWebUnit.class
net.sourceforge.jwebunit.junit.WebTestCase.class
net.sourceforge.jwebunit.junit.JWebUnit$1.class
net.sourceforge.jwebunit.javascript.JavascriptConfirm.class
net.sourceforge.jwebunit.javascript.JavascriptAlert.class
net.sourceforge.jwebunit.javascript.JavascriptPrompt.class
net.sourceforge.jwebunit.html.Table.class
net.sourceforge.jwebunit.html.Row.class
net.sourceforge.jwebunit.html.Cell.class
net.sourceforge.jwebunit.exception.TestingEngineRegistryException.class
net.sourceforge.jwebunit.exception.UnexpectedJavascriptConfirmException.class
net.sourceforge.jwebunit.exception.UnexpectedJavascriptPromptException.class
net.sourceforge.jwebunit.exception.ExpectedJavascriptAlertException.class
net.sourceforge.jwebunit.exception.ElementNotFoundException.class
net.sourceforge.jwebunit.exception.UnableToSetFormException.class
net.sourceforge.jwebunit.exception.UnexpectedJavascriptAlertException.class
net.sourceforge.jwebunit.exception.ExpectedJavascriptConfirmException.class
net.sourceforge.jwebunit.exception.TestingEngineResponseException.class
net.sourceforge.jwebunit.exception.ExpectedJavascriptPromptException.class
net.sourceforge.jwebunit.util.TestContext.class
net.sourceforge.jwebunit.util.TestingEngineRegistry.class
net.sourceforge.jwebunit.api.HttpHeader.class
net.sourceforge.jwebunit.api.ITestingEngine.class
net.sourceforge.jwebunit.api.IElement.class
META-INF/maven/net.sourceforge.jwebunit/jwebunit-core/pom.xml
META-INF/maven/net.sourceforge.jwebunit/jwebunit-core/pom.properties
|
依赖Jar: |
regexp-1.3.jar
/regexp/regexp/1.3
查看regexp所有版本文件
servlet-api-2.5.jar
/javax.servlet/servlet-api/2.5
查看servlet-api所有版本文件
commons-lang-2.6.jar
/commons-lang/commons-lang/2.6
查看commons-lang所有版本文件
|