Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestBean (0.04 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java

            assertEquals("item1", bean.getItems().get(0));
        }
    
        @Test
        void testPerformanceWithRepeatedCalls() throws Exception {
            TestBean bean1 = new TestBean();
            TestBean bean2 = new TestBean();
            PlexusConfiguration config = new XmlPlexusConfiguration("test");
            config.setValue("testValue");
    
            when(evaluator.evaluate("testValue")).thenReturn("testValue");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 12 14:59:46 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        }
        // Should overflow without throwing.
        accumulator.addAll(accumulator.snapshot());
        assertThat(accumulator.count()).isLessThan(0L);
      }
    
      public void testMean() {
        assertThrows(IllegalStateException.class, () -> emptyAccumulator.mean());
        assertThrows(IllegalStateException.class, () -> emptyAccumulatorByAddAllEmptyIterable.mean());
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:45:32 UTC 2025
    - 36.9K bytes
    - Viewed (0)
Back to top