package com.cy.pj.common.cache;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest//SpringBoot工程中的单元测试类需要使用此注解进行描述
public class DefaultCacheTests { // is a Object
/**@Autowired 告诉spring框架运行时为此属性注入一个值*/
@Autowired
private DefaultCache defaultCache;//has a DefaultCache
@Test
void testDefaultCache() {
//use a system (用system类中的out对象println<打印>)
System.out.println("defaultCache=" + defaultCache);
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。