Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Convert TestNG tests to JUnit tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Trutz <christian.trutz@belaso.de>
  • Loading branch information
Christian Trutz committed Jun 19, 2012
1 parent 241b859 commit e71881c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
Expand Up @@ -27,10 +27,10 @@

import ch.qos.logback.classic.encoder.PatternLayoutEncoder;

import static org.testng.Assert.*;
import static org.junit.Assert.*;

import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import org.junit.Before;
import org.junit.Test;

import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.ILogListener;
Expand All @@ -53,7 +53,7 @@ public class EclipseLogAppenderTest {
private EclipseLogAppenderWithMockPlatform appender = null;
private PatternLayoutEncoder encoder = null;

@BeforeMethod
@Before
public void before() {
// create the encoder and start it so that it initializes inner parameters
// needed by the appender
Expand Down
7 changes: 0 additions & 7 deletions pom.xml
Expand Up @@ -104,20 +104,13 @@
<!-- Test Dependencies: -->
<easymock.version>3.1</easymock.version>
<groovy.version>1.8.6</groovy.version>
<testng.version>6.4</testng.version>
<jmockit.version>0.999.15</jmockit.version>
<junit.version>4.8.2</junit.version>

</properties>

<dependencies>
<!-- Test Dependencies for _all_ children modules: -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
Expand Down

0 comments on commit e71881c

Please sign in to comment.