Browse Source

Fix deperecated junit.framework.Assert.

Changed to org.junit.Assert.
tags/rel_3_23_0_ga
nickl- 6 years ago
parent
commit
45b4c55361
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      src/test/testproxy/ProxyTester.java

+ 3
- 1
src/test/testproxy/ProxyTester.java View File

@@ -3,13 +3,15 @@ package testproxy;
import java.lang.reflect.Method;
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;

import org.junit.Assert;

import java.lang.reflect.InvocationTargetException;
import javassist.util.proxy.ProxyFactory;
import javassist.util.proxy.MethodFilter;
import javassist.util.proxy.MethodHandler;
import javassist.util.proxy.ProxyObject;
import javassist.util.proxy.Proxy;
import junit.framework.Assert;
import junit.framework.TestCase;
import java.io.*;


Loading…
Cancel
Save