Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testSuccess (0.23 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * Tests for {@link AbstractFuture}.
     *
     * @author Brian Stoler
     */
    @NullUnmarked
    public class AbstractFutureTest extends TestCase {
      public void testSuccess() throws ExecutionException, InterruptedException {
        Object value = new Object();
        assertSame(
            value,
            new AbstractFuture<Object>() {
              {
                set(value);
              }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * Tests for {@link AbstractFuture}.
     *
     * @author Brian Stoler
     */
    @NullUnmarked
    public class AbstractFutureTest extends TestCase {
      public void testSuccess() throws ExecutionException, InterruptedException {
        Object value = new Object();
        assertSame(
            value,
            new AbstractFuture<Object>() {
              {
                set(value);
              }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.logout(createUser("testuser", new String[] { "111", "222" }));
            assertEquals("action:LOGOUT\tuser:testuser\tpermissions:111|222", localLogMsg.get());
        }
    
        public void test_access() {
            activityHelper.useEcsFormat = false;
            activityHelper.access(OptionalThing.empty(), "/", "aaa");
            assertEquals("action:ACCESS\tuser:-\tpath:/\texecute:aaa", localLogMsg.get());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top