0
我正在爲我的項目創建junit測試用例。我有下面的代碼,在那裏我想創建一個模擬,我正在使用junit和mockito核心jar。我試着用下面的代碼,Junit測試用例與Mockito
System.setProperty("path.to.properties", "dummyPathToProperties"); //invalid Path
Properties properties = mock(Properties.class);
Resource propertyFile = new FileSystemResourceLoader().getResource("dummyPathToProperties");
when(PropertiesLoaderUtils.loadProperties(propertyFile)).thenReturn(properties);
有了上面的代碼,它會引發錯誤,當模擬loadProperties方法。我怎樣才能模擬一個彈簧靜態類並返回我的模擬屬性對象?
任何幫助將非常感激。