Tagged Questions
0
votes
3answers
100 views
Grails Criteria not working in JUnit Test
I'm trying to test search method in my grails app but I'm having a null pointer exception. I mocked the domain in my test as follows:
@TestFor(AuditController)
@Mock(Audit)
class ...
0
votes
1answer
84 views
Grails: Unit test domain class constraint gives wrong result
I'm trying to write unit tests for my domain class to test constraints but I got unexpected result. Here is my domain class:
class Student {
String firstName
String lastName
static ...
1
vote
2answers
61 views
Grails: NPE in Unit Test
I'm writing a unit test for my domain class but I get a NPE when I tried to run the following test:
def st
void setUp(){
super.setUp()
mockForConstraintsTests(Student)
st=new ...
1
vote
3answers
544 views
Mocking Using JMockit
I need to mock a method in a java class that is like this:
public class Helper{
public static message(final String serviceUrl){
HttpClient httpclient = new HttpClient();
...
1
vote
1answer
177 views
Grails testcase fails
i have a domain class like
package trip.side
import java.text.SimpleDateFormat
class HotelStay {
String hotel
Date checkIn
Date checkOut
static constraints = {
}
String ...
4
votes
1answer
367 views
can't test my grails application because of error
Here is my domain class, which I want to test.
class TekEvent {
String city
String name
String organizer
String venue
Date startDate
Date endDate
String description
...
