File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/test/scala/org/scalatest/tools/maven Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 19
19
<scala .major.version>2.11</scala .major.version>
20
20
<scala .minor.version>7</scala .minor.version>
21
21
<scala .version>${scala.major.version} .${scala.minor.version} </scala .version>
22
- <scalatest .version>2.2.6 </scalatest .version>
22
+ <scalatest .version>3.0.1 </scalatest .version>
23
23
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
24
24
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
25
25
<build .timestamp>${maven.build.timestamp} </build .timestamp>
Original file line number Diff line number Diff line change 1
1
package org .scalatest .tools .maven
2
2
3
3
import java .io .File
4
- import org .scalatest .matchers . ShouldMatchers
4
+ import org .scalatest .Matchers
5
5
import org .scalatest .junit .JUnit3Suite
6
6
import java .util .ArrayList
7
7
import org .scalatest .BeforeAndAfterAll
8
8
9
9
/**
10
10
* @author Jon -Anders Teigen
11
11
*/
12
- class PluginTest extends JUnit3Suite with ShouldMatchers with PluginMatchers with BeforeAndAfterAll {
12
+ final class PluginTest
13
+ extends JUnit3Suite
14
+ with BeforeAndAfterAll
15
+ with Matchers
16
+ with PluginMatchers {
13
17
val tmpDir = new File (System .getProperty(" java.io.tmpdir" ))
14
18
val reportsDirectory = new File (tmpDir, " reportsDirectory" )
15
19
val baseDir = new File (tmpDir, " basedir" );
You can’t perform that action at this time.
0 commit comments