workitemcase.java

来自「日常的办公系统 应用工作流框架等增加员工的基本信息、培训信息、奖罚信息、薪资信息」· Java 代码 · 共 80 行

JAVA
80
字号
//// TestCase.java//// jmettraux@openwfe.org//// generated with // jtmpl 1.0.04 20.11.2001 John Mettraux (jmettraux@openwfe.org)//package openwfe.org.engine._test;/** * The test cases for the package * * <p><font size=2>CVS Info : * <br>$Author: jmettraux $ * <br>$Date: 2005/05/17 16:40:20 $ * <br>$Id: WorkitemCase.java,v 1.3 2005/05/17 16:40:20 jmettraux Exp $ </font> * * @author jmettraux@openwfe.org */public class WorkitemCase    extends junit.framework.TestCase{    //    // FIELDS    //    // CONSTRUCTORS    public WorkitemCase (String name)    {        super(name);    }    //    // METHODS    public void setUp ()    {    }    public void tearDown ()    {    }    //    // TEST METHODS    /*    public void testSignature ()    {        try        {            RsaKey[] keys = RsaKey.generateKeyPair(1024);            RsaKey publicKey = keys[0];            RsaKey privateKey = keys[1];            InFlowWorkItem wi = new InFlowWorkItem();            wi.sign("tsaleboueb", privateKey);            wi.verify(publicKey);        }        catch (CryptoException ce)        {            ce.printStackTrace();            Assert.fail("verification failed ");        }        Assert.assertTrue(true);    }    */}

⌨️ 快捷键说明

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