static void testPropertyValue()
{
	String s("abc");
	String ss = string("abc");
	Integer i(1);
	Integer ii = 1;
	Double d(2.2);
	Double dd = 2.2;
	Boolean b(true);
	Boolean bb = false;
	Byte byte('x');
	Byte bytebyte = 'x';

	cout << s.toString() << i.toString() << d.toString() << b.toString() << byte.toString() << endl;
	cout << ss.toString()<< ii.toString() << dd.toString() << bb.toString() << bytebyte.toString() << endl;

	cout << "Test PropertyValue Pass" << endl;
}