xml/xmldomandxpath/test/tef/xmlengdomutils_tef/src/CXmlEngNodeTestSetValue.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 09:29:21 +0200
changeset 0 e35f40988205
permissions -rw-r--r--
Revision: 200947 Kit: 200951

// Copyright (c) 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:
//

/**
 @file CXmlEngNodeTestSetValue.cpp
 @internalTechnology
*/

#include "CXmlEngNodeTestSetValue.h"

#include <xml/dom/xmlengdomutils.h>
#include <xml/dom/xmlengdomimplementation.h>
#include <xml/dom/xmlengdocument.h>

/**
 * Class CXmlEngDOMUtilStep1 Implementation
 */
CXmlEngNodeTestSetValue::CXmlEngNodeTestSetValue(const TDesC& aStepName)
	{
	//Set the test step name in the base class
	SetTestStepName(aStepName);
	} 

TVerdict CXmlEngNodeTestSetValue::doTestStepL(void)
	{
	if (TestStepName() == KXmlEngNodeTestSetValueStep)
		{
		INFO_PRINTF1(KXmlEngNodeTestSetValueStep);
		SetTestStepResult(TestKXmlEngTestSetValue());
		}
			
	return TestStepResult();
	}


TVerdict CXmlEngNodeTestSetValue::TestKXmlEngTestSetValue()
	{
	TInt err = KErrNone; 
	_LIT8(KLit1, "asdfds");
	_LIT8(KLit2, "xzcvcv");
	_LIT8(KLit3, "lklklk");
	TBufC8<30> aLocalName(KLit1);
	TBufC8<30> aNamespaceUri(KLit2);
	TBufC8<30> aPrefix(KLit3);
	
	RXmlEngDOMImplementation domImpl;
	domImpl.OpenL(); 
		
	RXmlEngDocument doc;
	doc.OpenL(domImpl);

	TXmlEngElement aElement = doc.CreateElementL(aLocalName, aNamespaceUri, aPrefix);
	
	//For code coverage
	TRAP(err, aElement.SetValueL(aPrefix));
	
	
	doc.Close();               
	domImpl.Close();
		
	if (KErrNone != err)
	{
		return EFail;
	}
	
	return EPass;
	}