⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samplesuite.java

📁 SUnRDIS网络应用平台,可以在该平台上开发RFID应用,系统.
💻 JAVA
字号:
/* * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. * */package com.mycompany.adapter.sample;import junit.framework.*;import junit.textui.TestRunner;public class SampleSuite extends TestCase {        public SampleSuite(java.lang.String testName) {        super(testName);    }        /**     * suite method automatically generated by JUnit module     */    public static Test suite() {        TestSuite suite = new TestSuite("SampleSuite");        suite.addTest(SampleAdapterTest.suite());        return suite;    }        public static void main(String args[]) {        TestRunner.run(SampleSuite.class);    }    }

⌨️ 快捷键说明

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