Added note for unittest limitation
authoryoonki.park <yoonki.park@samsung.com>
Tue, 2 Feb 2016 07:16:55 +0000 (16:16 +0900)
committeryoonki.park <yoonki.park@samsung.com>
Tue, 2 Feb 2016 07:16:55 +0000 (16:16 +0900)
Change-Id: Ie0a30e8558d2e96b2b689932b94297dccc307f39
Signed-off-by: yoonki.park <yoonki.park@samsung.com>
org.tizen.devtools/html/native_tools/unit_test_n.htm

index 2b81d91..ceab033 100644 (file)
@@ -37,9 +37,9 @@
        
  <h1>Unit Test</h1>
 
- <p>Unit test tools verify that the unit works exactly as intended in the particular module&#39;s source code. If you encounter any problems due to code changes, they help identify the problem within a short period of time and make it right. The Tizen IDE provides an effective unit test tool for Tizen native applications. The tool offers the Unit Test Wizard for creating a unit test project, with which you can create and run test cases.</p>
+ <p>Unit test tools verify that the unit works exactly as intended in the particular module&#39;s source code. If you encounter any problems due to code changes, they help identify the problem within a short period of time and make it right. The Tizen IDE provides an effective unit test tool for Tizen native projects. The tool offers the Unit Test Wizard for creating a unit test project, with which you can create and run test cases.</p>
  
-<p>To unit test your application:</p>
+<p>To unit test your project:</p>
 <ol>
 <li><a href="#create">Create a test project</a>.</li>
 <li><a href="#edit">Edit a test project</a>.</li>
@@ -53,7 +53,7 @@
 <li>In the IDE menu, select <strong>File &gt; New &gt; Other &gt; Tizen &gt; Tizen Native Unit Test Project</strong>.</li>
 <li>In the <strong>New Tizen Unit Test Project</strong> window:
 <ol type="a">
-       <li>In the <strong>Select the Tizen project for test</strong> panel, select the application you want to test.</li>
+       <li>In the <strong>Select the Tizen project for test</strong> panel, select the project you want to test.</li>
        <li>Define a name for the test project.</li>
        <li>Define a destination folder where to save the project.
        <p>Select the <strong>Use default location</strong> check box to save the test project in the IDE workspace, or browse to the required destination folder.</p>
 </li>
 </ol>
 
-<p>The generated test project allows you to test your application.</p>
-
+<p>The generated test project allows you to test your project.</p>
+<table class="note">
+   <tbody>
+    <tr>
+     <th class="note">Note</th>
+    </tr>
+    <tr>
+     <td class="note">You are only able to create a test project for <strong>shared library</strong> project and <strong>static library</strong> project.</td>
+    </tr>
+   </tbody>
+  </table>
 
 <h2 id="edit">Editing a Test Project</h2>