| Summary: | Task view Failed | ||
|---|---|---|---|
| Product: | [Tools] PTP | Reporter: | Victor Liu <victor1006> |
| Component: | RDT | Assignee: | Chris Recoskie <recoskie> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | cecco, g.watson, ptp-inbox, recoskie, vivkong |
| Version: | 4.0.5 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Task tags are not yet supported in RDT. Assuming this will not be fixed. |
1. Create a new C++ Class. At the top of the class, add an in line comment (//) that starts with TODO. Save the file. Open the tasks view. 2. Expected result: There should be an entry that starts with TODO and contains the text of the comment in the "Tasks" view Test data: /* * MyClass.cpp * */ #include "MyClass.h" MyClass::MyClass() { // TODO Auto-generated constructor stub } MyClass::~MyClass() { // TODO Auto-generated destructor stub } /* * MyClass.h * */ #ifndef MYCLASS_H_ #define MYCLASS_H_ class MyClass { public: MyClass(); virtual ~MyClass(); }; #endif /* MYCLASS_H_ */