Home | History | Annotate | Download | only in utils

Lines Matching full:description

76     print 'Generating test description for package %s' % name
79 """Generate a test package description by running the DescriptionGenerator doclet.
83 output_file: Name of the file where the description gets written.
93 # Annotation classes are also required, since test annotations go into the description.
121 """Generate the test description for the signature check."""
127 description = open(os.path.join(self.test_repository, 'SignatureTest.xml'), 'w')
128 package.WriteDescription(description)
129 description.close()
132 """Generate the test description for the reference app tests."""
140 description = open(os.path.join(self.test_repository, 'ApiDemosReferenceTest.xml'), 'w')
141 package.WriteDescription(description)
142 description.close()
145 """Generate the test description for the application security tests."""
152 temp_desc = os.path.join(self.temp_dir, 'description.xml')
160 description = open(os.path.join(self.test_repository, package_name + '.xml'), 'w')
161 doc.writexml(description, addindent=' ', encoding='UTF-8')
162 description.close()
214 # Run the description generator doclet to get the test package structure
217 temp_desc = os.path.join(self.temp_dir, 'description.xml')
237 description = open(os.path.join(self.test_repository, package_name + '.xml'), 'w')
238 doc.writexml(description, addindent=' ', encoding='UTF-8')
239 description.close()
251 for description in descriptions:
252 doc = tools.XmlFile(description)