Lines Matching refs: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.
122 """Generate the test description for the signature check."""
129 description = open(os.path.join(self.test_repository, 'SignatureTest.xml'), 'w')
130 package.WriteDescription(description)
131 description.close()
134 """Generate the test description for the reference app tests."""
143 description = open(os.path.join(self.test_repository, 'ApiDemosReferenceTest.xml'), 'w')
144 package.WriteDescription(description)
145 description.close()
148 """Generate the test description for the application security tests."""
155 temp_desc = os.path.join(self.temp_dir, 'description.xml')
163 description = open(os.path.join(self.test_repository, package_name + '.xml'), 'w')
164 doc.writexml(description, addindent=' ', encoding='UTF-8')
165 description.close()
217 # Run the description generator doclet to get the test package structure
220 temp_desc = os.path.join(self.temp_dir, 'description.xml')
240 description = open(os.path.join(self.test_repository, package_name + '.xml'), 'w')
241 doc.writexml(description, addindent=' ', encoding='UTF-8')
242 description.close()
254 for description in descriptions:
255 doc = tools.XmlFile(description)