Guest User

Untitled

a guest
Feb 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Map<String, List<Account>> results
  2.  
  3. List<Account> outerList = results.values();
  4. System.assertEquals(2, outerList.size());
  5.  
  6. Illegal assignment from List<List<Account>> to List<Account>
  7.  
  8. System.assertEquals(2, results.values().size());
  9.  
  10. System.assertEquals(2, results.size());
Add Comment
Please, Sign In to add comment