minor work

This commit is contained in:
Eugen Paraschiv 2013-10-22 18:38:49 +03:00
parent 930f2c3b86
commit 77b1225fdd
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import static org.junit.Assert.assertTrue;
import java.util.Collection;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.Set;
import org.junit.Test;
@ -94,7 +95,7 @@ public class GuavaCollectionsExamplesTest {
//
@Test
@Test(expected = NoSuchElementException.class)
public final void givenNoSearchResult_whenFindingElementInIterable_thenNoException() {
final Iterable<String> theCollection = Sets.newHashSet("abcd", "efgh", "ijkl");