blob: de783371e1df9a8921f8901c82c89a4fc09e4c5d [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>SpringMainTest xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<pre>
<a name="1" href="#1">1</a> <strong class="jxr_keyword">package</strong> org.apache.mina.example.chat;
<a name="2" href="#2">2</a>
<a name="3" href="#3">3</a> <strong class="jxr_keyword">import</strong> junit.framework.TestCase;
<a name="4" href="#4">4</a> <strong class="jxr_keyword">import</strong> org.springframework.context.ConfigurableApplicationContext;
<a name="5" href="#5">5</a> <strong class="jxr_keyword">import</strong> org.apache.mina.common.IoService;
<a name="6" href="#6">6</a>
<a name="7" href="#7">7</a> <em class="jxr_javadoccomment">/**</em>
<a name="8" href="#8">8</a> <em class="jxr_javadoccomment"> */</em>
<a name="9" href="#9">9</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/mina/example/chat/SpringMainTest.html">SpringMainTest</a> <strong class="jxr_keyword">extends</strong> TestCase {
<a name="10" href="#10">10</a>
<a name="11" href="#11">11</a> <strong class="jxr_keyword">private</strong> ConfigurableApplicationContext appContext;
<a name="12" href="#12">12</a>
<a name="13" href="#13">13</a> @Override
<a name="14" href="#14">14</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> tearDown() <strong class="jxr_keyword">throws</strong> Exception {
<a name="15" href="#15">15</a> <strong class="jxr_keyword">super</strong>.tearDown();
<a name="16" href="#16">16</a> <strong class="jxr_keyword">if</strong> (appContext != <strong class="jxr_keyword">null</strong>) {
<a name="17" href="#17">17</a> appContext.close();
<a name="18" href="#18">18</a> }
<a name="19" href="#19">19</a> }
<a name="20" href="#20">20</a>
<a name="21" href="#21">21</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testContext() {
<a name="22" href="#22">22</a> appContext = SpringMain.getApplicationContext();
<a name="23" href="#23">23</a> IoService service = (IoService) appContext.getBean(<span class="jxr_string">"ioAcceptor"</span>);
<a name="24" href="#24">24</a> IoService ioAcceptorWithSSL = (IoService) appContext.getBean(<span class="jxr_string">"ioAcceptorWithSSL"</span>);
<a name="25" href="#25">25</a> assertTrue(service.isActive());
<a name="26" href="#26">26</a> assertTrue(ioAcceptorWithSSL.isActive());
<a name="27" href="#27">27</a> appContext.close();
<a name="28" href="#28">28</a> assertFalse(service.isActive());
<a name="29" href="#29">29</a> assertFalse(ioAcceptorWithSSL.isActive());
<a name="30" href="#30">30</a> }
<a name="31" href="#31">31</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>