Package com.jacob.com

Examples of com.jacob.com.JacobObject


public class BaseTestCase extends TestCase {

  protected void setUp() {
    // verify we have run with the dll in the lib path
    try {
      JacobObject foo = new JacobObject();
      if (foo == null) {
        fail("Failed basic sanity test: Can't create JacobObject (-D<java.library.path=xxx>)");
      }
    } catch (UnsatisfiedLinkError ule) {
      fail("Did you remember to run with the jacob.dll in the libpath ?");
View Full Code Here


  /**
   * this test exists just to test the setup.
   */
  public void testSetup() {
    JacobObject foo = new JacobObject();
    assertNotNull(foo);
  }
View Full Code Here

TOP

Related Classes of com.jacob.com.JacobObject

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.