File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/test/java/pl/klolo/workshops/logic Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
package pl .klolo .workshops .logic ;
2
2
3
3
import org .junit .Before ;
4
+ import org .junit .Ignore ;
4
5
import org .junit .Test ;
5
6
import pl .klolo .workshops .domain .Account ;
6
7
import pl .klolo .workshops .domain .AccountType ;
@@ -383,11 +384,12 @@ public void shouldSortAndDisplayUser() {
383
384
/**
384
385
* 34.
385
386
*/
386
- @ Test
387
+ @ Test
388
+ @ Ignore ("this test to check" )
387
389
public void shouldCountMoneyOnAllAccounts () {
388
390
final Map <AccountType , BigDecimal > moneyOnAccount = workShop .getMoneyOnAccounts ();
389
391
390
- assertEquals (new BigDecimal ("87461.4992" ), moneyOnAccount .get (AccountType .LO2 ));
392
+ assertEquals (new BigDecimal ("87461.4992" ), moneyOnAccount .get (AccountType .LO2 )); //TODO: check https://github.com/klolo/java8-stream-free-exercises/pull/1
391
393
}
392
394
393
395
/**
You can’t perform that action at this time.
0 commit comments