Package ru.aristar.jnuget

Examples of ru.aristar.jnuget.Reference


     */
    @Test
    public void testParseWithReferences() throws Exception {
        // GIVEN
        final String fileName = "/nuspec/NUnit.nuspec.xml";
        Reference dll = new Reference().setFile("nunit.framework.dll");
        Reference xml = new Reference().setFile("nunit.framework.xml");
        Reference[] references = new Reference[]{dll, xml};
        String[] tags = new String[]{"Unit", "test"};

        // WHEN
        NuspecFile result = NuspecFile.Parse(NuspecFileTest.class.getResourceAsStream(fileName));
View Full Code Here

TOP

Related Classes of ru.aristar.jnuget.Reference

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.