Lines Matching refs:Test
1 # Test chapter
14 test # Test subsystem
17 │ ├── config # Test framework configuration
20 │ ├── examples # Test case examples
23 │ ├── reports # Test reports
25 │ ├── start.bat # Test entry for Windows
26 │ └── start.sh # Test entry for Linux
29 ## Writing Test Cases
30 ### Designing the Test Case Directory
38 │ │ └── test # Test directory
43 │ │ │ ├── phone # Test cases for smart phones
44 │ │ │ ├── ivi # Test cases for head units
45 │ │ │ └── liteos-a # Test cases for IP cameras that use the LiteOS kernel
61 > **NOTE**<br>Test cases are classified into common test cases and device-specific test cases. You …
63 ### Writing Test Cases
66 #### C++ Test Case Example
78 - Test case example
86 class CalculatorSubTest : public testing::Test {
146 class CalculatorSubTest : public testing::Test {
220 | Test Case Type|Code|
223 |Performance Test |PERF|
229 #### JavaScript Test Case Example
233 …The source file name of a test case must be in the [Function]\[Sub-function]Test format, and each …
241 - Test case example
353 ### Writing the Build File for Test Cases
356 #### Writing Build Files for Test Cases
359 - **Test case build file example (C++)**
460 - **Test case build file example (JavaScript)**
611 ### Configuring Test Case Resources
612 Test case resources include external file resources, such as image files, video files, and third-pa…
641 ## Executing Test Cases
692 ### Executing Test Cases on Windows
693 #### Building Test Cases
695 Test cases cannot be built on Windows. You need to run the following command to build test cases on…
706 1. On Windows, create the **Test** directory in the test framework and then create the **testcase**…
708 2. Copy **developertest** and **xdevice** from the Linux environment to the **Test** directory on W…
721 <dir>D:\Test\testcase\tests</dir>
726 #### Executing Test Cases
750 ### Executing Test Cases on Linux
766 #### Executing Test Cases
791 ## Viewing the Test Report
794 ### Test Result
804 | result/ |Test cases in standard format|
805 | log/plan_log_xxxx_xx_xx_xx_xx_xx.log | Test case logs|
806 | summary_report.html | Test report summary|
809 ### Test Framework Logs
814 ### Latest Test Report