Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 517 Bytes

File metadata and controls

20 lines (17 loc) · 517 Bytes

UnitTestGenerator

Create input and output directories in the same directory as your main python file.You should place your desired DTOs there.

pom.xml dependencies used:

<dependencies>
	<dependency>
		<groupId>junit</groupId>
		<artifactId>junit</artifactId>
		<version>4.12</version>
		<scope>test</scope>
	</dependency>

	<dependency>
		<groupId>org.mockito</groupId>
		<artifactId>mockito-junit-jupiter</artifactId>
		<version>3.2.4</version>
		<scope>test</scope>
	</dependency>
</dependencies>