Skip to content
Snippets Groups Projects
Commit 675bd055 authored by Stuart Marks's avatar Stuart Marks
Browse files

rename A_LambdasAndMethodReferences to A_Lambdas

parent 8169473f
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,9 @@ import static org.junit.Assert.assertEquals; ...@@ -13,6 +13,9 @@ import static org.junit.Assert.assertEquals;
import org.junit.Ignore; import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
...@@ -23,7 +26,7 @@ import static org.junit.Assert.assertTrue; ...@@ -23,7 +26,7 @@ import static org.junit.Assert.assertTrue;
* is named after the functional interface intended to be used * is named after the functional interface intended to be used
* as the solution. * as the solution.
*/ */
public class A_LambdasAndMethodReferences { public class A_Lambdas {
/** /**
* Write a lambda expression that is a predicate * Write a lambda expression that is a predicate
......
...@@ -13,6 +13,9 @@ import static org.junit.Assert.assertEquals; ...@@ -13,6 +13,9 @@ import static org.junit.Assert.assertEquals;
import org.junit.Ignore; import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
...@@ -23,7 +26,7 @@ import static org.junit.Assert.assertTrue; ...@@ -23,7 +26,7 @@ import static org.junit.Assert.assertTrue;
* is named after the functional interface intended to be used * is named after the functional interface intended to be used
* as the solution. * as the solution.
*/ */
public class A_LambdasAndMethodReferences { public class A_Lambdas {
/** /**
* Write a lambda expression that is a predicate * Write a lambda expression that is a predicate
......
...@@ -5,7 +5,7 @@ import org.junit.runners.Suite; ...@@ -5,7 +5,7 @@ import org.junit.runners.Suite;
@RunWith(Suite.class) @RunWith(Suite.class)
@Suite.SuiteClasses(value={ @Suite.SuiteClasses(value={
exercises.A_LambdasAndMethodReferences.class, exercises.A_Lambdas.class,
exercises.B_Comparators.class, exercises.B_Comparators.class,
exercises.Exercises.class exercises.Exercises.class
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment