mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-06-06 00:15:28 +00:00
📍Use lombok, reformat, and optimize the code (#1560)
* Use lombok, reformat, and optimize the code * Fix merge conflicts and some sonar issues Co-authored-by: va1m <va1m@email.com>
This commit is contained in:
+5
-4
@@ -23,16 +23,17 @@
|
||||
|
||||
package com.iluwatar.price.microservice;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* Test for Price Rest Controller
|
||||
*/
|
||||
public class PriceControllerTest {
|
||||
class PriceControllerTest {
|
||||
|
||||
@Test
|
||||
public void testgetPrice() {
|
||||
void testgetPrice() {
|
||||
var priceController = new PriceController();
|
||||
var price = priceController.getPrice();
|
||||
assertEquals("20", price);
|
||||
|
||||
Reference in New Issue
Block a user