Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fabcff5c authored by Quddus Chong's avatar Quddus Chong Committed by Android (Google) Code Review
Browse files

Merge "docs: Added new docs for uiautomator testing framework." into jb-mr1-dev

parents 95d5be9e 94b3f8ee
Loading
Loading
Loading
Loading
+217 KiB
Loading image diff...
+28 −4
Original line number Original line Diff line number Diff line
@@ -280,7 +280,7 @@ and may be out of date. For the most current list of options, execute <code>andr
    </tr>
    </tr>


    <tr>
    <tr>
      <td rowspan="3"><code>create-test-project</code></td>
      <td rowspan="3"><code>create test-project</code></td>


      <td><code>-n &lt;name&gt;</code></td>
      <td><code>-n &lt;name&gt;</code></td>


@@ -306,7 +306,7 @@ and may be out of date. For the most current list of options, execute <code>andr
    </tr>
    </tr>


    <tr>
    <tr>
      <td rowspan="2"><code>update-test-project</code></td>
      <td rowspan="2"><code>update test-project</code></td>


      <td><code>-p &lt;path&gt;</code></td>
      <td><code>-p &lt;path&gt;</code></td>


@@ -324,7 +324,7 @@ and may be out of date. For the most current list of options, execute <code>andr
    </tr>
    </tr>


    <tr>
    <tr>
      <td rowspan="4"><code>create-lib-project</code></td>
      <td rowspan="4"><code>create lib-project</code></td>


      <td><code>-k &lt;packageName&gt;</code></td>
      <td><code>-k &lt;packageName&gt;</code></td>


@@ -358,7 +358,7 @@ and may be out of date. For the most current list of options, execute <code>andr
    </tr>
    </tr>


    <tr>
    <tr>
      <td rowspan="3"><code>update-lib-project</code></td>
      <td rowspan="3"><code>update lib-project</code></td>


      <td><code>-p &lt;path&gt;</code></td>
      <td><code>-p &lt;path&gt;</code></td>


@@ -382,6 +382,30 @@ and may be out of date. For the most current list of options, execute <code>andr


      <td></td>
      <td></td>
    </tr>
    </tr>

    <tr>
      <td rowspan="3"><code>create uitest-project</code></td>
      <td><code>-n &lt;name&gt;</code></td>
      <td>The name of the UI test project</td>
      <td></td>
    </tr>

    <tr>
      <td><code>-t &lt;name&gt;</code></td>

      <td>Target ID of the UI test project</td>

      <td>Required</td>
    </tr>

    <tr>
      <td><code>-p &lt;path&gt;</code></td>

      <td>Location path of the UI test project</td>

      <td>Required</td>
    </tr>

  </table>
  </table>


  <h3>Update actions</h3>
  <h3>Update actions</h3>
+168 −0
Original line number Original line Diff line number Diff line
page.title=IAutomationSupport
parent.title=uiautomator
parent.link=index.html
@jd:body
<style>
    h4.jd-details-title {background-color: #DEE8F1;}
</style>

<h2>Class Overview</h2>
<p>Provides auxiliary support for running test cases

</p>





</div><!-- jd-descr -->
















<div class="jd-descr">


<h2>Summary</h2>



























<!-- ========== METHOD SUMMARY =========== -->
<table id="pubmethods" class="jd-sumtable"><tr><th colspan="12">Public Methods</th></tr>



	 
    <tr class="api" >
        <td class="jd-typecol">
            abstract
            
            
            
            
            void
        </td>
        <td class="jd-linkcol" width="100%">
        <span class="sympad"><a href="#sendStatus(int, android.os.Bundle)">sendStatus</a></span>(int resultCode, Bundle status)
        
        <div class="jd-descrdiv">Allows the running test cases to send out interim status</div>
  
  </td></tr>



</table>







</div><!-- jd-descr (summary) -->

<!-- Details -->








<!-- XML Attributes -->


<!-- Enum Values -->


<!-- Constants -->


<!-- Fields -->


<!-- Public ctors -->



<!-- ========= CONSTRUCTOR DETAIL ======== -->
<!-- Protected ctors -->



<!-- ========= METHOD DETAIL ======== -->
<!-- Public methdos -->

<h2>Public Methods</h2>



<a id="sendStatus(int, android.os.Bundle)"></a>

<div class="jd-details api "> 
    <h4 class="jd-details-title">
      <span class="normal">
        public 
         
         
        abstract 
         
        void
      </span>
      <span class="sympad">sendStatus</span>
      <span class="normal">(int resultCode, Bundle status)</span>
    </h4>
      <div class="api-level">
        <div>

</div>
        
  

      </div>
    <div class="jd-details-descr">
      
  <div class="jd-tagdata jd-tagdescr"><p>Allows the running test cases to send out interim status</p></div>

    </div>
</div>


Loading