PageRenderTime 60ms CodeModel.GetById 37ms RepoModel.GetById 0ms app.codeStats 0ms

/xref-test/fspotcloud/botdispatch/controller/callback/ErrorHandlerImplTest.html

https://github.com/slspeek/FSpotCloudSite
HTML | 57 lines | 55 code | 2 blank | 0 comment | 0 complexity | 8c1572e84f6f99d0572dad8342782abb MD5 | raw file
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  5. <title>ErrorHandlerImplTest xref</title>
  6. <link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
  7. </head>
  8. <body>
  9. <div id="overview"><a href="../../../../../testapidocs/fspotcloud/botdispatch/controller/callback/ErrorHandlerImplTest.html">View Javadoc</a></div><pre>
  10. <a class="jxr_linenumber" name="1" href="#1">1</a> <strong class="jxr_keyword">package</strong> fspotcloud.botdispatch.controller.callback;
  11. <a class="jxr_linenumber" name="2" href="#2">2</a>
  12. <a class="jxr_linenumber" name="3" href="#3">3</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.mockito.Mockito.*;
  13. <a class="jxr_linenumber" name="4" href="#4">4</a> <strong class="jxr_keyword">import</strong> junit.framework.TestCase;
  14. <a class="jxr_linenumber" name="5" href="#5">5</a>
  15. <a class="jxr_linenumber" name="6" href="#6">6</a> <strong class="jxr_keyword">import</strong> com.google.inject.Guice;
  16. <a class="jxr_linenumber" name="7" href="#7">7</a> <strong class="jxr_keyword">import</strong> com.google.inject.Injector;
  17. <a class="jxr_linenumber" name="8" href="#8">8</a>
  18. <a class="jxr_linenumber" name="9" href="#9">9</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.model.api.Command;
  19. <a class="jxr_linenumber" name="10" href="#10">10</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.model.command.CommandDO;
  20. <a class="jxr_linenumber" name="11" href="#11">11</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.test.HeavyReport;
  21. <a class="jxr_linenumber" name="12" href="#12">12</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.test.HeavyReportModule;
  22. <a class="jxr_linenumber" name="13" href="#13">13</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.test.TestAsyncCallback;
  23. <a class="jxr_linenumber" name="14" href="#14">14</a> <strong class="jxr_keyword">import</strong> fspotcloud.botdispatch.test.ThrowingAction;
  24. <a class="jxr_linenumber" name="15" href="#15">15</a>
  25. <a class="jxr_linenumber" name="16" href="#16">16</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../fspotcloud/botdispatch/controller/callback/ErrorHandlerImplTest.html">ErrorHandlerImplTest</a> <strong class="jxr_keyword">extends</strong> TestCase {
  26. <a class="jxr_linenumber" name="17" href="#17">17</a>
  27. <a class="jxr_linenumber" name="18" href="#18">18</a> Command cmd;
  28. <a class="jxr_linenumber" name="19" href="#19">19</a> TestAsyncCallback callback;
  29. <a class="jxr_linenumber" name="20" href="#20">20</a> Throwable caught;
  30. <a class="jxr_linenumber" name="21" href="#21">21</a> ThrowingAction action;
  31. <a class="jxr_linenumber" name="22" href="#22">22</a> ErrorHandlerImpl target;
  32. <a class="jxr_linenumber" name="23" href="#23">23</a> Injector injector;
  33. <a class="jxr_linenumber" name="24" href="#24">24</a> HeavyReport report;
  34. <a class="jxr_linenumber" name="25" href="#25">25</a>
  35. <a class="jxr_linenumber" name="26" href="#26">26</a> @Override
  36. <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setUp() <strong class="jxr_keyword">throws</strong> Exception {
  37. <a class="jxr_linenumber" name="28" href="#28">28</a> report = mock(HeavyReport.<strong class="jxr_keyword">class</strong>);
  38. <a class="jxr_linenumber" name="29" href="#29">29</a> injector = Guice.createInjector(<strong class="jxr_keyword">new</strong> HeavyReportModule(report));
  39. <a class="jxr_linenumber" name="30" href="#30">30</a> action = <strong class="jxr_keyword">new</strong> ThrowingAction(<span class="jxr_string">"Demian"</span>);
  40. <a class="jxr_linenumber" name="31" href="#31">31</a> caught = <strong class="jxr_keyword">new</strong> Throwable();
  41. <a class="jxr_linenumber" name="32" href="#32">32</a> callback = <strong class="jxr_keyword">new</strong> TestAsyncCallback();
  42. <a class="jxr_linenumber" name="33" href="#33">33</a> cmd = <strong class="jxr_keyword">new</strong> CommandDO(action, callback);
  43. <a class="jxr_linenumber" name="34" href="#34">34</a> target = <strong class="jxr_keyword">new</strong> ErrorHandlerImpl(caught, cmd, injector);
  44. <a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">super</strong>.setUp();
  45. <a class="jxr_linenumber" name="36" href="#36">36</a> }
  46. <a class="jxr_linenumber" name="37" href="#37">37</a>
  47. <a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testOnError() {
  48. <a class="jxr_linenumber" name="39" href="#39">39</a> target.onError();
  49. <a class="jxr_linenumber" name="40" href="#40">40</a> verify(report).error(caught);
  50. <a class="jxr_linenumber" name="41" href="#41">41</a> }
  51. <a class="jxr_linenumber" name="42" href="#42">42</a>
  52. <a class="jxr_linenumber" name="43" href="#43">43</a> }
  53. </pre>
  54. <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
  55. </html>