- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for TestReturning (0.05 seconds)
-
guava-tests/test/com/google/common/util/concurrent/CallablesTest.java
* Unit tests for {@link Callables}. * * @author Isaac Shum */ @GwtCompatible @NullUnmarked public class CallablesTest extends TestCase { @J2ktIncompatible // TODO(b/324550390): Enable public void testReturning() throws Exception { assertThat(Callables.returning(null).call()).isNull(); Object value = new Object(); Callable<Object> callable = Callables.returning(value); assertSame(value, callable.call());Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 4.4K bytes - Click Count (0)