-
The tests are much easier to write with scala + scalatest, but it may be friendlier to developers to remove that and move to a pure java test framework.
-
Originally reported on Google Code with ID 177
```
When using expect / where, it is possible to specify a list of values, and Spock will
iterate through the list and check each value.
This works whe…
-
In WAR application deployed to Tomcat 7.0.63.
Gets error when one service call another service which both are marked @Transactional. Simplified stack trace:
```
org.springframework.transaction.Ille…
-
Suggested layout:
```
MyProject
-> depmgm Arquillian Universe
-> depmgm Arquillian Core
-> depmgm Arquillian Warp
-> depmgm Arquillian Drone
-> depmgm Arquillian W…
-
```
The following statement:
dependencyMock.getDependencies(getTask()) >> [task1, task2] as Set
lead to:
java.lang.NullPointerException: Cannot invoke method rightShift() on null object
at org.…
-
Original Reporter: brownj
Environment: Not Specified
Version: Not Specified
Migrated From: http://jira.grails.org/browse/GRAILS-9527
-
I started to use the spock test suite way too late, because I initially assumed it would be a pain to setup, and I hadn't any idea how the gradle tasks work, or that the bash scripts sort of take care…
dexX7 updated
9 years ago
-
Originally reported on Google Code with ID 180
```
What steps will reproduce the problem? If possible, provide source code and
stack trace.
1. mvn install
2. Freak out --->>> wants a SNAPSHOT (groovy…
-
Having a blast with Spock but I've run into a problem that I can't figure out.
When setting cookies this works well:
``` haskell
do setCookie "username" username 3600
```
But when I add a html resp…
-
I made some changes with a method, so I want to test the logic of this change. But I just feel it difficult to write a test function that reads clearly enough to explain my expectation. The problem is…