Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for resetSingleton (0.34 sec)

  1. src/test/java/jcifs/context/SingletonContextTest.java

        private static final Logger log = LoggerFactory.getLogger(SingletonContextTest.class);
    
        // Use reflection to reset the singleton instance between tests
        @BeforeEach
        @AfterEach
        void resetSingleton() {
            try {
                Field instance = SingletonContext.class.getDeclaredField("INSTANCE");
                instance.setAccessible(true);
                instance.set(null, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top