KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > TestMixinImpl


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package com.tirsen.nanning;
8
9 import java.io.Serializable JavaDoc;
10
11 import junit.framework.Assert;
12
13 /**
14  * TODO document TestMixinImpl
15  *
16  * <!-- $Id: TestMixinImpl.java,v 1.3 2003/03/21 17:11:14 lecando Exp $ -->
17  *
18  * @author $Author: lecando $
19  * @version $Revision: 1.3 $
20  */

21 public class TestMixinImpl implements TestMixin, Serializable JavaDoc {
22     private boolean called;
23
24     public void mixinCall() {
25         called = true;
26     }
27
28     public void verify() {
29         Assert.assertTrue(called);
30     }
31 }
32
Popular Tags