Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for Unit (0.14 sec)

  1. src/test/java/org/codelibs/fess/unit/UnitFessTestCase.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.unit;
    
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.utflute.lastaflute.WebContainerTestCase;
    
    public abstract class UnitFessTestCase extends WebContainerTestCase {
        @Override
        protected String prepareConfigFile() {
            return "test_app.xml";
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class CrawlingInfoPagerTest extends UnitFessTestCase {
    
        public void test_CrawlingInfoPage() {
            CrawlingInfoPager crawlinginfopage = new CrawlingInfoPager();
    
            crawlinginfopage.clear();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/FessLastaDocTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.lastaflute.meta.DocumentGenerator;
    
    public class FessLastaDocTest extends UnitFessTestCase {
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class BoostDocPagerTest extends UnitFessTestCase {
    
        public void test_BoostDocPage() {
            BoostDocPager boostdocpager = new BoostDocPager();
    
            boostdocpager.clear();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

    package org.codelibs.fess.mylasta;
    
    import java.io.File;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.utflute.lastaflute.police.NonActionExtendsActionPolice;
    import org.dbflute.utflute.lastaflute.police.NonWebHasWebReferencePolice;
    import org.dbflute.utflute.lastaflute.police.WebPackageNinjaReferencePolice;
    
    public class FessActionDefTest extends UnitFessTestCase {
    
        //    public void test_component() throws Exception {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

    import org.codelibs.core.io.ResourceUtil;
    import org.codelibs.fess.es.config.exentity.LabelType;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.xml.sax.InputSource;
    
    public class GsaConfigParserTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiItemTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.kuromoji;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class KuromojiItemTest extends UnitFessTestCase {
        public void test_new1() {
            final KuromojiItem kuromojiItem = new KuromojiItem(1, "t1", "s1", "r1", "p1");
            assertEquals(1, kuromojiItem.getId());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

    import org.apache.lucene.search.TermQuery;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.exception.InvalidQueryException;
    import org.codelibs.fess.query.parser.QueryParser;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.MatchPhraseQueryBuilder;
    import org.opensearch.index.query.PrefixQueryBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

     */
    package org.codelibs.fess.helper;
    
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class PermissionHelperTest extends UnitFessTestCase {
    
        public PermissionHelper permissionHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/ParamMapTest.java

     */
    package org.codelibs.fess.entity;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.entity.ParamMap;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class ParamMapTest extends UnitFessTestCase {
    
        private ParamMap<Object, Object> createSnakeMap() {
            final Map<Object, Object> map = new HashMap<>();
            map.put("aaa", "111");
            map.put("aaa_bbb", "222");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
Back to top