All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.test.Abstract1ParamAndResultParameterizedTest Maven / Gradle / Ivy

/*
 * Copyright (C) 2008 feilong
 *
 * 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 com.feilong.test;

import org.junit.runners.Parameterized.Parameter;

/**
 * 1个参数 和1个返回结果的 ParameterizedTest.
 *
 * @author feilong
 * @param 
 *            the generic type
 * @param 
 *            the element type
 * @since 1.8.5
 */
public abstract class Abstract1ParamAndResultParameterizedTest extends AbstractParameterizedTest{

    //必须是 public 访问修饰符

    /** 第一个参数. */
    @Parameter(value = 0)
    public I input1;

    //---------------------------------------------------------------

    /** 期望值. */
    @Parameter(value = 1)
    public E expectedValue;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy