Java Doc for TestXMLBeanDeclaration.java in  » Library » Apache-commons-configuration-1.4-src » org » apache » commons » configuration » beanutils » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache commons configuration 1.4 src » org.apache.commons.configuration.beanutils 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.configuration.beanutils.TestXMLBeanDeclaration

TestXMLBeanDeclaration
public class TestXMLBeanDeclaration extends TestCase (Code)
Test class for XMLBeanDeclaration.
since:
   1.3
author:
   Oliver Heger
version:
   $Id: TestXMLBeanDeclaration.java 439648 2006-09-02 20:42:10Z oheger $


Field Summary
final static  String[][]COMPLEX_ATTRIBUTES
     An array with the property names of the complex properties.
final static  String[]COMPLEX_CLASSES
     An array with the names of the classes of the complex properties.
final static  String[]COMPLEX_PROPS
     An array with the names of nested (complex) properties.
final static  String[][]COMPLEX_VALUES
     An array with the values of the complex properties.
final static  StringKEY
     Constant for the key with the bean declaration.
final static  String[]TEST_PROPS
     An array with some test properties.
final static  String[]TEST_VALUES
     An array with the values for the test properties.
final static  StringVARS
     Constant for the section with the variables.
 XMLBeanDeclarationdecl
     Stores the object to be tested.


Method Summary
public  voidtestGetBeanClassName()
     Tests fetching the bean's class name.
public  voidtestGetBeanClassNameUndefined()
     Tests fetching the bean's class name if it is undefined.
public  voidtestGetBeanFactoryName()
     Tests fetching the name of the bean factory.
public  voidtestGetBeanFactoryNameUndefined()
     Tests fetching the name of the bean factory if it is undefined.
public  voidtestGetBeanFactoryParameter()
     Tests fetching the paramter for the bean factory.
public  voidtestGetBeanFactoryParameterUndefined()
     Tests fetching the paramter for the bean factory if it is undefined.
public  voidtestGetBeanProperties()
     Tests if the bean's properties are correctly extracted from the configuration object.
public  voidtestGetBeanPropertiesEmpty()
     Tests fetching properties if none are defined.
public  voidtestGetBeanPropertiesWithReservedAttributes()
     Tests obtaining the bean's properties when reserved attributes are involved.
public  voidtestGetInterpolatedBeanProperties()
     Tests whether interpolation of bean properties works.
public  voidtestGetNestedBeanDeclarations()
     Tests fetching nested bean declarations.
public  voidtestGetNestedBeanDeclarationsEmpty()
     Tests fetching nested bean declarations if none are defined.
public  voidtestInitFromMultiValueKey()
     Tests constructing a bean declaration from a key with multiple values.
public  voidtestInitFromNullConfiguration()
     Tests creating a declaration from a null configuration.
public  voidtestInitFromNullConfigurationAndKey()
     Tests creating a declaration from a null configuration with a key.
public  voidtestInitFromNullConfigurationAndNode()
     Tests creating a declaration from a null configuration with a node.
public  voidtestInitFromNullNode()
     Tests creating a declaration from a null node.
public  voidtestInitFromUndefinedKey()
     Tests constructing a bean declaration from an undefined key.
public  voidtestInitFromUndefinedKeyOptional()
     Tests constructing a bean declaration from a key, which is undefined when the optional flag is set.

Field Detail
COMPLEX_ATTRIBUTES
final static String[][] COMPLEX_ATTRIBUTES(Code)
An array with the property names of the complex properties.



COMPLEX_CLASSES
final static String[] COMPLEX_CLASSES(Code)
An array with the names of the classes of the complex properties.



COMPLEX_PROPS
final static String[] COMPLEX_PROPS(Code)
An array with the names of nested (complex) properties.



COMPLEX_VALUES
final static String[][] COMPLEX_VALUES(Code)
An array with the values of the complex properties.



KEY
final static String KEY(Code)
Constant for the key with the bean declaration.



TEST_PROPS
final static String[] TEST_PROPS(Code)
An array with some test properties.



TEST_VALUES
final static String[] TEST_VALUES(Code)
An array with the values for the test properties.



VARS
final static String VARS(Code)
Constant for the section with the variables.



decl
XMLBeanDeclaration decl(Code)
Stores the object to be tested.





Method Detail
testGetBeanClassName
public void testGetBeanClassName()(Code)
Tests fetching the bean's class name.



testGetBeanClassNameUndefined
public void testGetBeanClassNameUndefined()(Code)
Tests fetching the bean's class name if it is undefined.



testGetBeanFactoryName
public void testGetBeanFactoryName()(Code)
Tests fetching the name of the bean factory.



testGetBeanFactoryNameUndefined
public void testGetBeanFactoryNameUndefined()(Code)
Tests fetching the name of the bean factory if it is undefined.



testGetBeanFactoryParameter
public void testGetBeanFactoryParameter()(Code)
Tests fetching the paramter for the bean factory.



testGetBeanFactoryParameterUndefined
public void testGetBeanFactoryParameterUndefined()(Code)
Tests fetching the paramter for the bean factory if it is undefined.



testGetBeanProperties
public void testGetBeanProperties()(Code)
Tests if the bean's properties are correctly extracted from the configuration object.



testGetBeanPropertiesEmpty
public void testGetBeanPropertiesEmpty()(Code)
Tests fetching properties if none are defined.



testGetBeanPropertiesWithReservedAttributes
public void testGetBeanPropertiesWithReservedAttributes()(Code)
Tests obtaining the bean's properties when reserved attributes are involved. These should be ignored.



testGetInterpolatedBeanProperties
public void testGetInterpolatedBeanProperties()(Code)
Tests whether interpolation of bean properties works.



testGetNestedBeanDeclarations
public void testGetNestedBeanDeclarations()(Code)
Tests fetching nested bean declarations.



testGetNestedBeanDeclarationsEmpty
public void testGetNestedBeanDeclarationsEmpty()(Code)
Tests fetching nested bean declarations if none are defined.



testInitFromMultiValueKey
public void testInitFromMultiValueKey()(Code)
Tests constructing a bean declaration from a key with multiple values. This should cause an exception because keys must be unique.



testInitFromNullConfiguration
public void testInitFromNullConfiguration()(Code)
Tests creating a declaration from a null configuration. This should cause an exception.



testInitFromNullConfigurationAndKey
public void testInitFromNullConfigurationAndKey()(Code)
Tests creating a declaration from a null configuration with a key. This should cause an exception.



testInitFromNullConfigurationAndNode
public void testInitFromNullConfigurationAndNode()(Code)
Tests creating a declaration from a null configuration with a node. This should cause an exception.



testInitFromNullNode
public void testInitFromNullNode()(Code)
Tests creating a declaration from a null node. This should cause an exception.



testInitFromUndefinedKey
public void testInitFromUndefinedKey()(Code)
Tests constructing a bean declaration from an undefined key. This should cause an exception.



testInitFromUndefinedKeyOptional
public void testInitFromUndefinedKeyOptional()(Code)
Tests constructing a bean declaration from a key, which is undefined when the optional flag is set. In this case an empty declaration should be created, which can be used for creating beans as long as a default class is provided.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.