Package org.cfeclipse.cfmledit.dictionary

Examples of org.cfeclipse.cfmledit.dictionary.Dictionary


  }
 
  @Test
  public void TestIsSingleton() {
    try{
      Dictionary dic1 = Dictionary.getInstance();
      Dictionary dic2 = Dictionary.getInstance();
      assertEquals(dic1, dic2);
    }
    catch(Exception e){
      e.printStackTrace();
    }
View Full Code Here


 
 
 
  @Test
  public void TestLoadDictionary() throws Exception{
    Dictionary dict = Dictionary.getInstance();
    ArrayList<Version> versions = dict.getVersions();
    assertTrue(versions.size()>0);
   
   
  }
View Full Code Here

public class VersionTest {

  @Test
  public void testGetVersionFromDictionary() throws Exception {
    Dictionary dict = Dictionary.getInstance();
    ArrayList<Version> versions = dict.getVersions();
    assertEquals("org.cfeclipse.cfmledit.dictionary.Version", versions.get(0).getClass().getName());
  }
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfmledit.dictionary.Dictionary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.