gtest_xml_outfiles_test.py (googletest-release-1.11.0) | : | gtest_xml_outfiles_test.py (googletest-release-1.12.0) | ||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
"""Unit test for the gtest_xml_output module.""" | """Unit test for the gtest_xml_output module.""" | |||
import os | import os | |||
from xml.dom import minidom, Node | from xml.dom import minidom, Node | |||
import gtest_test_utils | from googletest.test import gtest_test_utils | |||
import gtest_xml_test_utils | from googletest.test import gtest_xml_test_utils | |||
GTEST_OUTPUT_SUBDIR = "xml_outfiles" | GTEST_OUTPUT_SUBDIR = "xml_outfiles" | |||
GTEST_OUTPUT_1_TEST = "gtest_xml_outfile1_test_" | GTEST_OUTPUT_1_TEST = "gtest_xml_outfile1_test_" | |||
GTEST_OUTPUT_2_TEST = "gtest_xml_outfile2_test_" | GTEST_OUTPUT_2_TEST = "gtest_xml_outfile2_test_" | |||
EXPECTED_XML_1 = """<?xml version="1.0" encoding="UTF-8"?> | EXPECTED_XML_1 = """<?xml version="1.0" encoding="UTF-8"?> | |||
<testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="* " name="AllTests"> | <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="* " name="AllTests"> | |||
<testsuite name="PropertyOne" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> | <testsuite name="PropertyOne" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> | |||
<testcase name="TestSomeProperties" status="run" result="completed" time="*" timestamp="*" classname="PropertyOne"> | <testcase name="TestSomeProperties" file="gtest_xml_outfile1_test_.cc" line= "41" status="run" result="completed" time="*" timestamp="*" classname="PropertyO ne"> | |||
<properties> | <properties> | |||
<property name="SetUpProp" value="1"/> | <property name="SetUpProp" value="1"/> | |||
<property name="TestSomeProperty" value="1"/> | <property name="TestSomeProperty" value="1"/> | |||
<property name="TearDownProp" value="1"/> | <property name="TearDownProp" value="1"/> | |||
</properties> | </properties> | |||
</testcase> | </testcase> | |||
</testsuite> | </testsuite> | |||
</testsuites> | </testsuites> | |||
""" | """ | |||
EXPECTED_XML_2 = """<?xml version="1.0" encoding="UTF-8"?> | EXPECTED_XML_2 = """<?xml version="1.0" encoding="UTF-8"?> | |||
<testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="* " name="AllTests"> | <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="* " name="AllTests"> | |||
<testsuite name="PropertyTwo" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> | <testsuite name="PropertyTwo" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> | |||
<testcase name="TestSomeProperties" status="run" result="completed" time="*" timestamp="*" classname="PropertyTwo"> | <testcase name="TestSomeProperties" file="gtest_xml_outfile2_test_.cc" line= "41" status="run" result="completed" time="*" timestamp="*" classname="PropertyT wo"> | |||
<properties> | <properties> | |||
<property name="SetUpProp" value="2"/> | <property name="SetUpProp" value="2"/> | |||
<property name="TestSomeProperty" value="2"/> | <property name="TestSomeProperty" value="2"/> | |||
<property name="TearDownProp" value="2"/> | <property name="TearDownProp" value="2"/> | |||
</properties> | </properties> | |||
</testcase> | </testcase> | |||
</testsuite> | </testsuite> | |||
</testsuites> | </testsuites> | |||
""" | """ | |||
End of changes. 3 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added |