File tree Expand file tree Collapse file tree 3 files changed +77
-56
lines changed
src/test/java/net/laffyco/javamatchingengine/restapi/controllers Expand file tree Collapse file tree 3 files changed +77
-56
lines changed Original file line number Diff line number Diff line change 1616 <properties >
1717 <java .version>1.8</java .version>
1818 </properties >
19+
20+ <profiles >
21+ <profile >
22+ <id >Repos</id >
23+ <repositories >
24+ <repository >
25+ <id >central</id >
26+ <url >https://repo1.maven.org/maven2</url >
27+ <releases ><enabled >true</enabled ></releases >
28+ <snapshots ><enabled >true</enabled ></snapshots >
29+ </repository >
30+ <repository >
31+ <id >github</id >
32+ <name >GitHub OWNER Apache Maven Packages</name >
33+ <url >https://maven.pkg.github.com/Laffini/Java-Matching-Engine-Core</url >
34+ </repository >
35+ </repositories >
36+ </profile >
37+ </profiles >
38+
1939 <dependencies >
2040 <dependency >
2141 <groupId >net.laffyco.java-matching-engine</groupId >
2242 <artifactId >core</artifactId >
2343 <version >0.0.1</version >
44+ <scope >compile</scope >
2445 </dependency >
2546 <dependency >
2647 <groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 1- package net .laffyco .javamatchingengine .restapi .controllers ;
2-
3- import javax .annotation .Resource ;
4-
5- import org .mockito .InjectMocks ;
6- import org .mockito .Mock ;
7-
8- import net .laffyco .javamatchingengine .core .api .OrderInterface ;
9-
10- /**
11- * Tests the OrderController.
12- *
13- * @author Laffini
14- *
15- */
16- public class OrderControllerTests {
17-
18- @ Mock
19- private OrderInterface orderInterface ;
20-
21- @ InjectMocks
22- @ Resource
23- private OrderController orderController ;
24-
25- // TODO: Tests for each end point verifying that the correct method in the
26- // OrderInterface was called.
27-
28- }
1+ // package net.laffyco.javamatchingengine.restapi.controllers;
2+ //
3+ // import javax.annotation.Resource;
4+ //
5+ // import org.mockito.InjectMocks;
6+ // import org.mockito.Mock;
7+ //
8+ // import net.laffyco.javamatchingengine.core.api.OrderInterface;
9+ //
10+ /// **
11+ // * Tests the OrderController.
12+ // *
13+ // * @author Laffini
14+ // *
15+ // */
16+ // public class OrderControllerTests {
17+ //
18+ // @Mock
19+ // private OrderInterface orderInterface;
20+ //
21+ // @InjectMocks
22+ // @Resource
23+ // private OrderController orderController;
24+ //
25+ // // TODO: Tests for each end point verifying that the correct method in the
26+ // // OrderInterface was called.
27+ //
28+ // }
Original file line number Diff line number Diff line change 1- package net .laffyco .javamatchingengine .restapi .controllers ;
2-
3- import javax .annotation .Resource ;
4-
5- import org .mockito .InjectMocks ;
6- import org .mockito .Mock ;
7-
8- import net .laffyco .javamatchingengine .core .api .SpreadInterface ;
9-
10- /**
11- * Tests the SpreadController.
12- *
13- * @author Laffini
14- *
15- */
16- public class SpreadControllerTests {
17-
18- @ Mock
19- private SpreadInterface spreadInterface ;
20-
21- @ InjectMocks
22- @ Resource
23- private SpreadController spreadController ;
24-
25- // TODO: Tests for each end point verifying that the correct method in the
26- // SpreadController was called.
27-
28- }
1+ // package net.laffyco.javamatchingengine.restapi.controllers;
2+ //
3+ // import javax.annotation.Resource;
4+ //
5+ // import org.mockito.InjectMocks;
6+ // import org.mockito.Mock;
7+ //
8+ // import net.laffyco.javamatchingengine.core.api.SpreadInterface;
9+ //
10+ /// **
11+ // * Tests the SpreadController.
12+ // *
13+ // * @author Laffini
14+ // *
15+ // */
16+ // public class SpreadControllerTests {
17+ //
18+ // @Mock
19+ // private SpreadInterface spreadInterface;
20+ //
21+ // @InjectMocks
22+ // @Resource
23+ // private SpreadController spreadController;
24+ //
25+ // // TODO: Tests for each end point verifying that the correct method in the
26+ // // SpreadController was called.
27+ //
28+ // }
You can’t perform that action at this time.
0 commit comments