Opened 15 years ago
Closed 15 years ago
#6435 closed task (fixed)
TestCaseManagementPlugin - Question
Reported by: | Owned by: | edunne | |
---|---|---|---|
Priority: | lowest | Component: | TestCaseManagementPlugin |
Severity: | trivial | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
Hello, I have setup the plugin according to hints at: http://trac-hacks.org/wiki/TestCaseManagementPlugin but when I try to create a test run a get a error message like:
The test: test1, doesn't match it's file name or you've specified it wrong in the testtemplates.xml file
All seems to be setup correctly. What is wrong?
Looking forward to your answer.
Regards, Marcin
SubversionPathToTestCases (from trac.conf): /testcases/sample
Content of /testcases/sample/test1
<testcase>
<id>
test1
</id> <component>
map
</component> <summary>
This test verifies correct functionaliy of zoom on the map.
</summary> <description>
Steps:
- Zoom around on the map.
- etc. Note you can use TRAC formatting in the testcase if you want.
</description> <expectedresult>
The map should correctly zoom to the area specified by the user..etc.
</expectedresult>
</testcase>
Content of /sample/testtemplates.xml
<templates>
<template name="SomeOtherTestGrouping">
<testcases>
<testcase>test1</testcase>
</testcases>
</template>
</templates>
Attachments (0)
Change History (1)
comment:1 Changed 15 years ago by
Priority: | normal → lowest |
---|---|
Resolution: | → fixed |
Severity: | normal → trivial |
Status: | new → closed |
Type: | defect → task |
The tests cases must be xml files, with a xml extension. Here the templates point to test1.xml who doesnt exist (test1 <> test1.xml).