Replies: 3 comments
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, @arcuri82, |
Beta Was this translation helpful? Give feedback.
0 replies
-
https://www.youtube.com/watch?v=3mYxjgnhLEo 1:53 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to connect EvoMaster with my code to perform white box testing.
here is my driver config
`import com.aidtaas.mobius.hcy.web.MarketplaceApplication;
import com.mongodb.internal.connection.Connection;
import org.evomaster.client.java.controller.EmbeddedSutController;
import org.evomaster.client.java.controller.InstrumentedSutStarter;
import org.evomaster.client.java.controller.api.dto.SutInfoDto;
import org.evomaster.client.java.controller.api.dto.auth.AuthenticationDto;
import org.evomaster.client.java.controller.internal.SutController;
import org.evomaster.client.java.controller.problem.ProblemInfo;
import org.evomaster.client.java.controller.problem.RestProblem;
import org.evomaster.client.java.sql.DbSpecification;
import org.springframework.boot.SpringApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.data.mongodb.core.MongoTemplate;
import java.util.List;
public class MyApplicationEvoMasterDriver extends EmbeddedSutController {
}
`
The command I'm using to run Evo master
java -jar /home/saiteja/Downloads/evomaster.jar --maxTime 20s --outputFolder /home/saiteja/Desktop/backend/hcy_20/hcy-web/src/test/java
The error I have encountered
`*
| | | / | | |
| |_ _____ | . . | __ _ | | ___ _ __
| __\ \ / / _ | |/| |/ ` / | / _ \ '|
| |\ V / () | | | | (| __ \ || / |
_/ _/ _/_| |/_,|/____|_|
Make sure the EvoMaster Driver for the system under test is running correctly.
`
FYI - My application runs on mongoDB, spring boot - 3.1.5, and java version 21
Beta Was this translation helpful? Give feedback.
All reactions