Package com.github.maven_nar.cpptasks.devstudio

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


public class TestDevStudio2005CCompiler extends TestCase {
    public TestDevStudio2005CCompiler(String name) {
        super(name);
    }
    public void testDebug() {
        DevStudio2005CCompiler compiler = DevStudio2005CCompiler.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.DevStudio2005CCompiler

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.