com.symbian.utils.cmdline.argscheckers.test.TestEpocTargetData.java Source code

Java tutorial

Introduction

Here is the source code for com.symbian.utils.cmdline.argscheckers.test.TestEpocTargetData.java

Source

/*
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/

package com.symbian.utils.cmdline.argscheckers.test;

import junit.framework.TestCase;

import org.apache.commons.cli.ParseException;

import com.symbian.utils.cmdline.argscheckers.EpocTargetData;

/**
 * @author EngineeringTools
 */
public class TestEpocTargetData extends TestCase {

    public void test() {
        EpocTargetData lFilterUnderTest = new EpocTargetData();

        try {
            lFilterUnderTest.check("armv5");
            lFilterUnderTest.check("winscw");
        } catch (ParseException aException) {
            fail();
        }

        try {
            lFilterUnderTest.check("gsfjksdj");
            lFilterUnderTest.check("arm5");

        } catch (ParseException aException) {

        }

    }

}