Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EL TCK: Copy signaturetest module files into EL TCK #1227

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions el/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@
<artifactId>common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>signaturetest</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2023 Oracle and/or its affiliates and others.
* Copyright (c) 2007, 2024 Oracle and/or its affiliates and others.
* All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand All @@ -24,22 +24,13 @@

import org.junit.jupiter.api.Test;

import com.sun.javatest.Status;
import com.sun.ts.tests.signaturetest.SigTest;
import com.sun.ts.tests.signaturetest.SignatureTestDriver;
import com.sun.ts.tests.signaturetest.SignatureTestDriverFactory;

import java.util.Properties;
import com.sun.ts.lib.util.TestUtil;
import java.lang.System.Logger;

/*
* This class is a simple example of a signature test that extends the
* SigTest framework class. This signature test is run outside of the
* Java EE containers. This class also contains the boilerplate
* code necessary to create a signature test using the test framework.
* To see a complete TCK example see the javaee directory for the Java EE
* TCK signature test class.
* EE containers.
*/
public class ELSigTestIT extends SigTest {

Expand Down Expand Up @@ -79,10 +70,6 @@ protected String[] getPackages() {
// comment or the one below it depending on which properties your
// signature tests need. Please do not use both comments.

/*
* @class.setup_props: ts_home, The base path of this TCK; sigTestClasspath;
*/

/*
* @testName: signatureTest
*
Expand All @@ -100,7 +87,6 @@ public void signatureTest() throws Exception {
logger.log(Logger.Level.INFO, "$$$ SigTestIT.signatureTest() called");
String mapFile = null;
String packageFile = null;
String repositoryDir = null;
Properties mapFileAsProps = null;
String[] packages = getPackages();
String apiPackage = "jakarta.el";
Expand Down
Loading
Loading