Skip to content

Commit

Permalink
Unified test suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
SQiShER committed Mar 12, 2016
1 parent d098ab4 commit 410bc60
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@
<enableAssertions>true</enableAssertions>
<includes>
<include>**/*Test.java</include>
<include>**/*Should.java</include>
<include>**/*Spec.java</include>
<include>**/*AT.java</include>
<include>**/*IT.java</include>
</includes>
Expand Down Expand Up @@ -396,6 +394,7 @@
<exclude>**/*IT.class</exclude>
<exclude>**/*AT.class</exclude>
<exclude>**/*Example.class</exclude>
<exclude>de/danielbechler/diff/mock/**/*.class</exclude>
</excludes>
</instrumentation>
<check/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
*/

package de.danielbechler.diff.category

import de.danielbechler.diff.access.PropertyAwareAccessor
import de.danielbechler.diff.node.DiffNode
import de.danielbechler.diff.path.NodePath
import de.danielbechler.diff.selector.BeanPropertyElementSelector
import spock.lang.Specification

/**
* @author Daniel Bechler
*/
class CategoryServiceSpec extends Specification {
class CategoryServiceTest extends Specification {
def categoryService = new CategoryService()
def accessor = Mock(PropertyAwareAccessor)
def nodePath = NodePath.with("foo")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import spock.lang.Unroll
import java.sql.Time
import java.sql.Timestamp

class ComparisonServiceSpec extends Specification {
class ComparisonServiceTest extends Specification {

def objectDifferBuilder = Stub(ObjectDifferBuilder)
ComparisonService comparisonService = new ComparisonService(objectDifferBuilder)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import spock.lang.Unroll
import java.text.Collator
import java.util.concurrent.ConcurrentSkipListMap

class ClassesSpec extends Specification {
class ClassesTest extends Specification {

@Shared
static def PRIMITIVE_WRAPPER_TYPE = [Integer, Short, Character, Long, Boolean, Byte, Float, Double]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package de.danielbechler.util
import spock.lang.Specification
import spock.lang.Unroll

class CollectionsSpec extends Specification {
class CollectionsTest extends Specification {

def "setOf: should create a new set from the given input"() {
given:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import spock.lang.Specification
/**
* @author Daniel Bechler
*/
class ComparablesSpec extends Specification {
class ComparablesTest extends Specification {

def "isEqualByComparison: should return true when both parameters are null"() {
expect:
Expand Down

0 comments on commit 410bc60

Please sign in to comment.