Package org.osmorc

Examples of org.osmorc.TestManifestHolder


    // should pick largest available version
    assertThat(bundleManifest.getBundleVersion().toString(), equalTo("1.2.3"));
  }

  private static ManifestHolder makeManifestHolder(String fileName, String text) {
    return new TestManifestHolder((ManifestFile)createLightFile(fileName, text));
  }
View Full Code Here


    assertThat(objects.contains(myFakeJarLibrary), is(true));
    assertThat(objects.size(), is(6)); // no more, no less
  }

  private static ManifestHolder makeHolder(@NotNull String fileName, @NotNull String contents, @Nullable Object boundObject) {
    TestManifestHolder result = new TestManifestHolder((ManifestFile)createLightFile(fileName, contents));
    result.setBoundObject(boundObject);
    return result;
  }
View Full Code Here

TOP

Related Classes of org.osmorc.TestManifestHolder

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.