-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial #9547
- Loading branch information
Showing
9 changed files
with
354 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
user/test/com/google/gwt/emultest/java9/util/OptionalDoubleTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package com.google.gwt.emultest.java9.util; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.OptionalDouble; | ||
import java.util.stream.Stream; | ||
|
||
/** | ||
* Tests for java.util.OptionalDouble Java 9 API emulation. | ||
*/ | ||
public class OptionalDoubleTest extends EmulTestBase { | ||
public void testIfPresentOrElse() { | ||
int[] called = {0}; | ||
OptionalDouble.of(10.0).ifPresentOrElse(value -> { | ||
assertEquals(10.0, value); | ||
called[0]++; | ||
}, () -> { | ||
fail("should not call empty action"); | ||
}); | ||
assertEquals(1, called[0]); | ||
called[0] = 0; | ||
OptionalDouble.empty().ifPresentOrElse(ignore -> { | ||
fail("Should not call present action"); | ||
}, () -> called[0]++); | ||
assertEquals(1, called[0]); | ||
} | ||
|
||
public void testStream() { | ||
assertEquals(0, OptionalDouble.empty().stream().count()); | ||
assertEquals(1, OptionalDouble.of(10.0).stream().count()); | ||
|
||
assertEquals( | ||
new double[] {10.0, 100.0, 1000.0}, | ||
Stream.of( | ||
OptionalDouble.of(10.0), | ||
OptionalDouble.empty(), | ||
OptionalDouble.of(100.0), | ||
OptionalDouble.of(1000.0) | ||
).flatMapToDouble(OptionalDouble::stream).toArray() | ||
); | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
user/test/com/google/gwt/emultest/java9/util/OptionalIntTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package com.google.gwt.emultest.java9.util; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.OptionalInt; | ||
import java.util.stream.Stream; | ||
|
||
/** | ||
* Tests for java.util.OptionalInt Java 9 API emulation. | ||
*/ | ||
public class OptionalIntTest extends EmulTestBase { | ||
public void testIfPresentOrElse() { | ||
int[] called = {0}; | ||
OptionalInt.of(10).ifPresentOrElse(value -> { | ||
assertEquals(10, value); | ||
called[0]++; | ||
}, () -> { | ||
fail("should not call empty action"); | ||
}); | ||
assertEquals(1, called[0]); | ||
called[0] = 0; | ||
OptionalInt.empty().ifPresentOrElse(ignore -> { | ||
fail("Should not call present action"); | ||
}, () -> called[0]++); | ||
assertEquals(1, called[0]); | ||
} | ||
|
||
public void testStream() { | ||
assertEquals(0, OptionalInt.empty().stream().count()); | ||
assertEquals(1, OptionalInt.of(10).stream().count()); | ||
|
||
assertEquals( | ||
new int[] {10, 100, 1000}, | ||
Stream.of( | ||
OptionalInt.of(10), | ||
OptionalInt.empty(), | ||
OptionalInt.of(100), | ||
OptionalInt.of(1000) | ||
).flatMapToInt(OptionalInt::stream).toArray() | ||
); | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
user/test/com/google/gwt/emultest/java9/util/OptionalLongTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package com.google.gwt.emultest.java9.util; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.OptionalLong; | ||
import java.util.stream.Stream; | ||
|
||
/** | ||
* Tests for java.util.OptionalLong Java 9 API emulation. | ||
*/ | ||
public class OptionalLongTest extends EmulTestBase { | ||
public void testIfPresentOrElse() { | ||
int[] called = {0}; | ||
OptionalLong.of(10).ifPresentOrElse(value -> { | ||
assertEquals(10, value); | ||
called[0]++; | ||
}, () -> { | ||
fail("should not call empty action"); | ||
}); | ||
assertEquals(1, called[0]); | ||
called[0] = 0; | ||
OptionalLong.empty().ifPresentOrElse(ignore -> { | ||
fail("Should not call present action"); | ||
}, () -> called[0]++); | ||
assertEquals(1, called[0]); | ||
} | ||
|
||
public void testStream() { | ||
assertEquals(0, OptionalLong.empty().stream().count()); | ||
assertEquals(1, OptionalLong.of(10).stream().count()); | ||
|
||
assertEquals( | ||
new long[] {10, 100, 1000}, | ||
Stream.of( | ||
OptionalLong.of(10), | ||
OptionalLong.empty(), | ||
OptionalLong.of(100), | ||
OptionalLong.of(1000) | ||
).flatMapToLong(OptionalLong::stream).toArray() | ||
); | ||
} | ||
} |
Oops, something went wrong.