源自spring in action的一些總結
1、導包
junit<
/groupid>
junit<
/artifactid>
4.11
<
/version>
test<
/scope>
<
/dependency>
//測試檔案不放在src/test下的話就不要加scope了 否則找不到@test註解
2、**中新增@test註解(@test註解應用在方法上),這裡我們主要了解junit單元測試中assert斷言的使用。
//匯入
import org.junit.test;
import
static org.junit.assert.*
// egs:
assertequals
("home"
,contolller.
home()
)// 檢視兩個物件是否相等
assertnull
(object)
// 檢視物件是否為空..
.
1、新增依賴
org.springframework<
/groupid>
spring-test<
/artifactid>
4.3.14
.release<
/version>
<
/dependency>
org.mockito<
/groupid>
mockito-all<
/artifactid>
1.10
.19<
/version>
<
/dependency>
junit<
/groupid>
junit<
/artifactid>
4.11
<
/version>
<
/dependency>
2、**中使用
import org.junit.test;
import
static org.springframework.test.web.servlet.*;
import
static org.mockito.mockito.*;
//如果**中使用了mock()方法需匯入
@test
public
void
shouldshowrecentspittles()
throws exception
web前端一些總結
一 文字框設定為圓角後獲得焦點又變為方角的解決方法 css outline none 二 html5的一些文字特性 required required aria required true autofocus autofocus required required aria required tru...
關於web的一些總結
畢業至今差不多有5年了,做過大大小小的專案應該突破1000了,下面總結下各種專案中的架構 三大體系之一單體架構 1.ssh jsp三大框架,2010年那會很火,但是現在想來,是有點複雜 2.mvc redis jdbc 自定義封裝 shiro jsp 這是我以前用過並且很火且常用的架構,至今都在用,...
web響應式的一些方法
1.給 img標籤增加樣式規則使它自適應容器尺寸。應宣告為塊級元素,應適應它容器的寬度,應保持原本的寬高比。2.為優化在高解析度裝置下的顯示效果,最簡單的方式是定義它們的width和height值為原始檔寬高的一半。img 3.一般依賴於 查詢 max width 小於或等於 min width 大...