Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for buildTearDownStack (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-testlib/test/com/google/common/testing/TearDownStackTest.java

    @NullUnmarked
    public class TearDownStackTest extends TestCase {
    
      private final TearDownStack tearDownStack = new TearDownStack();
    
      public void testSingleTearDown() throws Exception {
        TearDownStack stack = buildTearDownStack();
    
        SimpleTearDown tearDown = new SimpleTearDown();
        stack.addTearDown(tearDown);
    
        assertEquals(false, tearDown.ran);
    
        stack.runTearDown();
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 01 13:14:50 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top