01: /*
02: * $Header: /cvsroot/jvalidate/jvalidate-framework/jvalidate/src/test/java/nl/knowlogy/validation/metadata/PropertyValidationInterfaceTest.java,v 1.3 2007/04/01 12:59:51 roberthofstra Exp $
03: * $Revision: 1.3 $
04: * $Date: 2007/04/01 12:59:51 $
05: *
06: *
07: * Created on Oct 6, 2004
08: *
09: * All right reserved(c) 2004, Knowlogy
10: *
11: * Copyright 2004 - 2005 Knowlogy, the Netherlands. All rights reserved.
12: * All Knowlogy brand and product names are trademarks or registered trademarks
13: * of Knowlogy in the Netherlands and other countries.
14: *
15: * No part of this publication may be reproduced, transmitted, stored in a retrieval system,
16: * or translated into any human or computer language, in any form, or by any means, electronic,
17: * mechanical, magnetic, optical, chemical, manual, or otherwise,
18: * without the prior written permission of the copyright owner, Knowlogy.
19: *
20: */
21: package nl.knowlogy.validation.metadata;
22:
23: import junit.framework.TestCase;
24: import nl.knowlogy.validation.metadata.testexample.TestObject;
25:
26: /**
27: *
28: * @author Robert
29: */
30: public class PropertyValidationInterfaceTest extends TestCase {
31:
32: public void testPropertyValidationInterface() {
33:
34: TestObject testObject = new TestObject();
35: testObject.setTestValue("ok");
36:
37: }
38:
39: }
|