亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? testlinktag8.java

?? struts的源代碼
?? JAVA
字號:
/*
 * $Id: TestLinkTag8.java 54929 2004-10-16 16:38:42Z germuska $ 
 *
 * Copyright 1999-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.struts.taglib.html;

import java.util.Locale;

import javax.servlet.jsp.PageContext;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.apache.cactus.JspTestCase;
import org.apache.struts.Globals;
import org.apache.struts.taglib.SimpleBeanForTesting;

/**
 * Suite of unit tests for the
 * <code>org.apache.struts.taglib.bean.FrameTag</code> class.
 *
 */
public class TestLinkTag8 extends JspTestCase {

    /**
     * Defines the testcase name for JUnit.
     *
     * @param theName the testcase's name.
     */
    public TestLinkTag8(String theName) {
        super(theName);
    }

    /**
     * Start the tests.
     *
     * @param theArgs the arguments. Not used
     */
    public static void main(String[] theArgs) {
        junit.awtui.TestRunner.main(new String[] {TestLinkTag8.class.getName()});
    }

    /**
     * @return a test suite (<code>TestSuite</code>) that includes all methods
     *         starting with "test"
     */
    public static Test suite() {
        // All methods starting with "test" will be executed in the test suite.
        return new TestSuite(TestLinkTag8.class);
    }

    private void runMyTest(String whichTest, String locale) throws Exception {
        pageContext.setAttribute(Globals.LOCALE_KEY, new Locale(locale, locale), PageContext.SESSION_SCOPE);
        pageContext.setAttribute(Constants.BEAN_KEY, new SimpleBeanForTesting("Test Value"), PageContext.REQUEST_SCOPE);
        request.setAttribute("runTest", whichTest);
        pageContext.forward("/test/org/apache/struts/taglib/html/TestLinkTag8.jsp");
    }

    /*
     * Testing FrameTag.
     */

//--------Testing attributes using forward------
    public void testLinkPageOnblur() throws Exception {
        runMyTest("testLinkPageOnblur", "");
    }

    public void testLinkPageOnclick() throws Exception {
        runMyTest("testLinkPageOnclick", "");
    }

    public void testLinkPageOndblclick() throws Exception {
        runMyTest("testLinkPageOndblclick", "");
    }

    public void testLinkPageOnfocus() throws Exception {
        runMyTest("testLinkPageOnfocus", "");
    }

    public void testLinkPageOnkeydown() throws Exception {
        runMyTest("testLinkPageOnkeydown", "");
    }

    public void testLinkPageOnkeypress() throws Exception {
        runMyTest("testLinkPageOnkeypress", "");
    }

    public void testLinkPageOnkeyup() throws Exception {
        runMyTest("testLinkPageOnkeyup", "");
    }

    public void testLinkPageOnmousedown() throws Exception {
        runMyTest("testLinkPageOnmousedown", "");
    }

    public void testLinkPageOnmousemove() throws Exception {
        runMyTest("testLinkPageOnmousemove", "");
    }

    public void testLinkPageOnmouseout() throws Exception {
        runMyTest("testLinkPageOnmouseout", "");
    }

    public void testLinkPageOnmouseover() throws Exception {
        runMyTest("testLinkPageOnmouseover", "");
    }

    public void testLinkPageOnmouseup() throws Exception {
        runMyTest("testLinkPageOnmouseup", "");
    }

    public void testLinkPageParamIdParamNameNoScope() throws Exception {
                pageContext.setAttribute("paramName", "paramValue", PageContext.REQUEST_SCOPE);
        runMyTest("testLinkPageParamIdParamNameNoScope", "");
    }

    public void testLinkPageParamIdParamNameParamPropertyNoScope() throws Exception {
        SimpleBeanForTesting sbft = new SimpleBeanForTesting("paramPropertyValue");
                pageContext.setAttribute("testingParamProperty", sbft, PageContext.REQUEST_SCOPE);
        runMyTest("testLinkPageParamIdParamNameParamPropertyNoScope", "");
    }

    public void testLinkPageParamIdParamNameApplicationScope() throws Exception {
                pageContext.setAttribute("paramName", "paramValue", PageContext.APPLICATION_SCOPE);
        runMyTest("testLinkPageParamIdParamNameApplicationScope", "");
    }

    public void testLinkPageParamIdParamNameParamPropertyApplicationScope() throws Exception {
        SimpleBeanForTesting sbft = new SimpleBeanForTesting("paramPropertyValue");
                pageContext.setAttribute("testingParamProperty", sbft, PageContext.APPLICATION_SCOPE);
        runMyTest("testLinkPageParamIdParamNameParamPropertyApplicationScope", "");
    }

    public void testLinkPageParamIdParamNameSessionScope() throws Exception {
                pageContext.setAttribute("paramName", "paramValue", PageContext.SESSION_SCOPE);
        runMyTest("testLinkPageParamIdParamNameSessionScope", "");
    }

    public void testLinkPageParamIdParamNameParamPropertySessionScope() throws Exception {
        SimpleBeanForTesting sbft = new SimpleBeanForTesting("paramPropertyValue");
                pageContext.setAttribute("testingParamProperty", sbft, PageContext.SESSION_SCOPE);
        runMyTest("testLinkPageParamIdParamNameParamPropertySessionScope", "");
    }

    public void testLinkPageParamIdParamNameRequestScope() throws Exception {
                pageContext.setAttribute("paramName", "paramValue", PageContext.REQUEST_SCOPE);
        runMyTest("testLinkPageParamIdParamNameRequestScope", "");
    }

    public void testLinkPageParamIdParamNameParamPropertyRequestScope() throws Exception {
        SimpleBeanForTesting sbft = new SimpleBeanForTesting("paramPropertyValue");
                pageContext.setAttribute("testingParamProperty", sbft, PageContext.REQUEST_SCOPE);
        runMyTest("testLinkPageParamIdParamNameParamPropertyRequestScope", "");
    }


    public void testLinkPageStyle() throws Exception {
        runMyTest("testLinkPageStyle", "");
    }

    public void testLinkPageStyleClass() throws Exception {
        runMyTest("testLinkPageStyleClass", "");
    }

    public void testLinkPageStyleId() throws Exception {
        runMyTest("testLinkPageStyleId", "");
    }

    public void testLinkPageTabIndex() throws Exception {
        runMyTest("testLinkPageTabIndex", "");
    }

    public void testLinkPageTarget() throws Exception {
        runMyTest("testLinkPageTarget", "");
    }







    public void testLinkPageTitle() throws Exception {
        runMyTest("testLinkPageTitle", "");
    }

    public void testLinkPageTitleKey() throws Exception {
        runMyTest("testLinkPageTitleKey", "");
    }

    public void testLinkPageTransaction() throws Exception {
        pageContext.setAttribute(Globals.TRANSACTION_TOKEN_KEY, "Some_Token_Here", PageContext.SESSION_SCOPE);
        runMyTest("testLinkPageTransaction", "");
    }





}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
高清视频一区二区| 亚洲欧美一区二区三区极速播放| 久久亚洲精精品中文字幕早川悠里| 久久精品无码一区二区三区| 亚洲私人影院在线观看| 视频一区在线视频| 国产精品主播直播| 91国偷自产一区二区三区成为亚洲经典| 欧美性xxxxx极品少妇| 欧美r级电影在线观看| 中文字幕一区二区三中文字幕| 午夜精品成人在线| 国产69精品一区二区亚洲孕妇| 欧洲日韩一区二区三区| 久久品道一品道久久精品| 玉足女爽爽91| 国产一区二区三区在线观看免费| 91老师片黄在线观看| 欧美变态tickling挠脚心| 亚洲视频香蕉人妖| 久久99国产精品免费| 在线看日韩精品电影| 国产欧美日产一区| 免费一区二区视频| 欧美主播一区二区三区美女| 国产日本一区二区| 日韩福利视频网| 99久久精品免费观看| 精品久久久久久久久久久院品网| 亚洲精品v日韩精品| 国产成人av影院| 91精品国产乱| 亚洲综合丁香婷婷六月香| 成人禁用看黄a在线| 欧美xxxx老人做受| 午夜久久电影网| 91视视频在线观看入口直接观看www| 欧美mv和日韩mv的网站| 亚洲动漫第一页| 99视频超级精品| 久久久亚洲午夜电影| 秋霞av亚洲一区二区三| 欧美三级在线看| 亚洲欧美日韩久久精品| 国产91精品在线观看| 久久亚洲免费视频| 奇米在线7777在线精品| 欧美久久一区二区| 亚洲成人手机在线| 在线视频国产一区| 亚洲欧美欧美一区二区三区| 国产精品一二一区| 久久久久一区二区三区四区| 奇米一区二区三区av| 欧美人狂配大交3d怪物一区| 一区二区三区四区亚洲| 9i看片成人免费高清| 国产欧美精品一区二区三区四区| 国产在线麻豆精品观看| 欧美电影免费观看高清完整版在线 | 久久久www成人免费毛片麻豆| 天堂久久久久va久久久久| 欧美亚洲综合一区| 亚洲一区二区三区影院| 在线观看日产精品| 伊人一区二区三区| 日本精品视频一区二区三区| 亚洲欧洲精品一区二区三区不卡| 成人免费视频一区二区| 中文字幕一区二区5566日韩| 成人av网站免费| 中文字幕一区二区三区av| 成人美女视频在线看| 欧美激情一区三区| av在线一区二区三区| 自拍av一区二区三区| 欧美中文字幕一区二区三区亚洲| 亚洲国产美国国产综合一区二区| 欧美四级电影在线观看| 天天综合色天天综合色h| 精品视频一区 二区 三区| 日韩成人dvd| 精品av久久707| 国产精品99久久久久久久女警 | 国产高清亚洲一区| 日本一区二区三区久久久久久久久不| 国产精品一区三区| 国产精品丝袜一区| 91国产丝袜在线播放| 香蕉乱码成人久久天堂爱免费| 欧美日本一区二区在线观看| 日本亚洲欧美天堂免费| 欧美精品一区二区久久婷婷| 国产一区二区三区美女| 日韩美女啊v在线免费观看| 在线精品亚洲一区二区不卡| 日韩二区在线观看| 久久久综合网站| 99精品在线观看视频| 亚洲高清三级视频| 日韩欧美的一区| 成人不卡免费av| 亚洲午夜一区二区| 欧美成人一区二区三区在线观看 | 国产拍揄自揄精品视频麻豆| 92国产精品观看| 亚洲超碰97人人做人人爱| 欧美v国产在线一区二区三区| 福利一区二区在线| 亚洲国产综合色| 精品电影一区二区三区 | 一区二区在线观看av| 欧美一区二区三区免费大片| 国产成人h网站| 亚洲大尺度视频在线观看| 2023国产精品自拍| 日本丶国产丶欧美色综合| 麻豆91精品视频| 国产精品不卡在线观看| 日韩西西人体444www| 成人国产精品免费观看动漫 | 日韩亚洲欧美综合| 91网站在线播放| 美腿丝袜亚洲色图| 一区二区中文字幕在线| 日韩欧美自拍偷拍| 91小视频在线免费看| 韩国三级电影一区二区| 亚洲综合色成人| 久久久久久久久久久久电影 | 美女视频黄免费的久久| 综合自拍亚洲综合图不卡区| 日韩一区二区免费视频| 色综合久久久久综合体| 国产一区二区三区免费在线观看| 亚洲精品ww久久久久久p站 | 成人做爰69片免费看网站| 日韩精品一级中文字幕精品视频免费观看 | 日本欧洲一区二区| 中文字幕永久在线不卡| wwwwxxxxx欧美| 在线成人免费视频| 91美女在线观看| 国产精品538一区二区在线| 日韩精品亚洲专区| 亚洲午夜久久久久中文字幕久| 国产精品乱人伦| 欧美精品一区二区三区视频| 欧美色综合影院| 色系网站成人免费| 99视频一区二区三区| 国产福利电影一区二区三区| 轻轻草成人在线| 午夜av一区二区三区| 一区二区三区国产精品| 成人欧美一区二区三区白人| 国产亚洲精品7777| 欧美va亚洲va香蕉在线 | 国内一区二区视频| 日韩国产欧美在线播放| 亚洲综合丁香婷婷六月香| 国产精品福利在线播放| 久久精品夜色噜噜亚洲a∨| 精品奇米国产一区二区三区| 欧美女孩性生活视频| 欧美综合亚洲图片综合区| 91猫先生在线| 91网站最新网址| 99视频精品在线| 91片在线免费观看| 99国产精品久久久| 99re成人精品视频| 99免费精品在线观看| www.亚洲激情.com| www.欧美色图| 99天天综合性| 色婷婷综合久色| 日本精品视频一区二区三区| 色哟哟一区二区三区| 欧美在线短视频| 欧美日韩视频专区在线播放| 欧美久久一二三四区| 777久久久精品| 欧美一区二区三区四区高清| 91精品婷婷国产综合久久性色| 欧美视频一区二区三区四区 | 日韩精品一区第一页| 日本v片在线高清不卡在线观看| 日韩专区在线视频| 老司机精品视频在线| 九九热在线视频观看这里只有精品 | 91成人免费网站| 欧美日韩亚州综合| 欧美一区二区在线不卡| 欧美草草影院在线视频| 国产欧美一区二区精品仙草咪| 国产精品视频第一区| 国产精品久久精品日日| 亚洲美女电影在线| 亚洲图片欧美色图|