- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 879 for isSetup (0.24 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java
* Unit tests for the SmbComNegotiateResponse class. */ class SmbComNegotiateResponseTest { private SmbTransport.ServerData serverData; private SmbComNegotiateResponse response; @BeforeEach void setUp() throws UnknownHostException { // To instantiate the non-static inner class ServerData, we need an instance of the outer class SmbTransport. UniAddress uniAddress = new UniAddress(InetAddress.getByName("127.0.0.1"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
import org.lastaflute.web.validation.VaMessenger; public class InvalidQueryExceptionTest extends UnitFessTestCase { public void test_constructor_withMessageCodeMessageAndCause() { // Setup final String message = "Invalid query syntax error"; final Exception cause = new RuntimeException("Query parsing failed");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlerLogHelperTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class CrawlerLogHelperTest extends UnitFessTestCase { private CrawlerLogHelper crawlerLogHelper; @Override public void setUp() throws Exception { super.setUp(); crawlerLogHelper = new CrawlerLogHelper(); } public void test_instantiation() { assertNotNull(crawlerLogHelper); } public void test_log_method_exists() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
import org.lastaflute.web.validation.VaMessenger; public class SsoMessageExceptionTest extends UnitFessTestCase { public void test_constructor_withMessageCodeMessageAndCause() { // Setup final String message = "Test SSO error message"; final Exception cause = new RuntimeException("Test cause");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/mail/EsStatusPostcardTest.java
*/ package org.codelibs.fess.mylasta.mail; import org.codelibs.fess.unit.UnitFessTestCase; public class EsStatusPostcardTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Basic test to verify test framework is working
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientTest.java
*/ package org.codelibs.fess.opensearch.client; import org.codelibs.fess.unit.UnitFessTestCase; public class SearchEngineClientTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); } @Override public void tearDown() throws Exception { super.tearDown(); } // Basic test to verify test framework is working
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
import java.util.function.Function; public class SsoAuthenticatorTest extends UnitFessTestCase { private TestSsoAuthenticator authenticator; @Override public void setUp() throws Exception { super.setUp(); authenticator = new TestSsoAuthenticator(); } // Mock LoginCredentialResolver for testing
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
RenderDataUtil.register(data, "protwordsItemItems", protwordsService.getProtwordsList(dictId, protwordsPager)); }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(protwordsPager, form, op -> op.include("id")); }); }); } private HtmlResponse asEditHtml() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosFileFilterTest.java
*/ @ExtendWith(MockitoExtension.class) class DosFileFilterTest { @Mock private SmbFile mockFile; private DosFileFilter dosFileFilter; @BeforeEach void setUp() { // Basic setup, specific filter attributes will be set in each test } /** * Tests the constructor of DosFileFilter.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/SerializableTester.java
* object is equal to the original. * * <p><b>GWT warning:</b> Under GWT, both methods simply returns their input, as proper GWT * serialization tests require more setup. This no-op behavior allows test authors to intersperse * {@code SerializableTester} calls with other, GWT-compatible tests. * * @author Mike Bostock * @since 10.0 */ @GwtCompatible // but no-op! @NullMarked
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4.1K bytes - Viewed (0)