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

📄 constructiontest.java

📁 SRI international 发布的OAA框架软件
💻 JAVA
字号:
/* 
 * Local Variables:
 * c-basic-offset:2
 * tab-width:2
 * indent-tabs-mode:nil
 * End:
 */
/*
 * Created on Jun 5, 2003
 *
 */
package com.sri.oaa2.test.icl;

import com.sri.oaa2.icl.*;

import junit.framework.TestCase;

/**
 * @author agno
 *
 */
public class ConstructionTest extends TestCase 
{
  /**
   * Constructor for ConstructionTest.
   * @param arg0
   */
  public ConstructionTest(String arg0) 
  {
    super(arg0);
  }

  public void testIclStrConstr()
  {
    IclStr s = new IclStr("'blah");
    TestCase.assertEquals(s.toString(), "'''blah'");
  }
}

⌨️ 快捷键说明

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