isinstanceof.java

来自「不管是测试驱动开发或者是其它的开发模式」· Java 代码 · 共 34 行

JAVA
34
字号
/*  Copyright (c) 2000-2004 jMock.org
 */
package org.jmock.core.constraint;

import org.jmock.core.Constraint;


/**
 * Tests whether the value is an instance of a class.
 */
public class IsInstanceOf implements Constraint
{
    private Class theClass;

    /**
     * Creates a new instance of IsInstanceOf
     *
     * @param theClass The predicate evaluates to true for instances of this class
     *                 or one of its subclasses.
     */
    public IsInstanceOf( Class theClass ) {
        this.theClass = theClass;
    }

    public boolean eval( Object arg ) {
        return theClass.isInstance(arg);
    }

    public StringBuffer describeTo( StringBuffer buffer ) {
        return buffer.append("an instance of ")
                .append(theClass.getName());
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?