我有一个 java 项目和测试项目,它使用 java 项目中编写的代码。我需要将我的 java 代码转换为启用了 spring 的注释,并将它们作为自动连接的 spring bean 加载到测试项目中。请指导我完成这个。
我的 java 项目中的 java 代码示例如下所示
package javaproject;
public class JavaCodeImpl {
public boolean clearData() {
//some code written to clear the data
}
public String getVariable() {
//some code written to get the variable value
}
public String getExpandedVariable() {
//some code written to get the expanded variable value
}
}
下面是我的测试项目中的代码
package testProject;
import javaProject;
import org.junit;
public class testCodeTest {
@Before
public void setup() {
JavaCodeImpl javaObj = new JavaCodeImpl();
}
@Test
public void testMethod() {
Assert.assertEquals(true, javaObj.clearData());
Assert.assertEquals("variable", javaObj.getVariable());
Assert.assertEquals("expandedVariable", javaObj.getExpandedVariable());
}
}