Package com.github.maven_nar.cpptasks.devstudio

Examples of com.github.maven_nar.cpptasks.devstudio.DevStudioCCompiler


public class TestDevStudioCCompiler extends TestCase {
    public TestDevStudioCCompiler(String name) {
        super(name);
    }
    public void testDebug() {
        DevStudioCCompiler compiler = DevStudioCCompiler.getInstance();
        Vector args = new Vector();
        compiler.addDebugSwitch(args);
        assertEquals(4, args.size());
        assertEquals("/Zi", args.elementAt(0));
        assertEquals("/Od", args.elementAt(1));
        assertEquals("/RTC1", args.elementAt(2));
        assertEquals("/D_DEBUG", args.elementAt(3));
View Full Code Here

TOP

Related Classes of com.github.maven_nar.cpptasks.devstudio.DevStudioCCompiler

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.