[JAVA-8355] Move article code to spring-testing-2 module

This commit is contained in:
Haroon Khan
2021-11-25 19:51:32 +00:00
parent be86acb87f
commit 805500140f
7 changed files with 11 additions and 8 deletions
@@ -0,0 +1,10 @@
package com.baeldung.testexecutionlisteners;
import org.springframework.stereotype.Service;
@Service
public class AdditionService {
public int add(int a, int b) {
return a + b;
}
}