Renamed static_mock package to staticmock

master
Ramnivas Laddad 15 years ago
parent 776edbcae3
commit 92d6dfbe8d
  1. 2
      org.springframework.aspects/src/main/java/org/springframework/mock/staticmock/AbstractMethodMockingControl.aj
  2. 2
      org.springframework.aspects/src/main/java/org/springframework/mock/staticmock/JUnitStaticEntityMockingControl.aj
  3. 2
      org.springframework.aspects/src/main/java/org/springframework/mock/staticmock/MockStaticEntityMethods.java
  4. 4
      org.springframework.aspects/src/test/java/org/springframework/mock/staticmock/Delegate.java
  5. 4
      org.springframework.aspects/src/test/java/org/springframework/mock/staticmock/JUnitStaticEntityMockingControlTest.java
  6. 2
      org.springframework.aspects/src/test/java/org/springframework/mock/staticmock/Person.java
  7. 2
      org.springframework.aspects/src/test/java/org/springframework/mock/staticmock/Person_Roo_Entity.aj

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import java.util.Arrays; import java.util.Arrays;
import java.util.LinkedList; import java.util.LinkedList;

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import javax.persistence.Entity; import javax.persistence.Entity;
import org.junit.Test; import org.junit.Test;

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import java.rmi.RemoteException; import java.rmi.RemoteException;
@ -8,6 +8,8 @@ import junit.framework.Assert;
import org.junit.Ignore; import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.springframework.mock.staticmock.JUnitStaticEntityMockingControl;
import org.springframework.mock.staticmock.MockStaticEntityMethods;
//Used because verification failures occur after method returns, //Used because verification failures occur after method returns,
//so we can't test for them in the test case itself //so we can't test for them in the test case itself

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import java.rmi.RemoteException; import java.rmi.RemoteException;
@ -25,6 +25,8 @@ import junit.framework.Assert;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.junit.runners.JUnit4; import org.junit.runners.JUnit4;
import org.springframework.mock.staticmock.JUnitStaticEntityMockingControl;
import org.springframework.mock.staticmock.MockStaticEntityMethods;
import org.springframework.remoting.RemoteAccessException; import org.springframework.remoting.RemoteAccessException;

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
import javax.persistence.Entity; import javax.persistence.Entity;

@ -1,4 +1,4 @@
package org.springframework.mock.static_mock; package org.springframework.mock.staticmock;
privileged aspect Person_Roo_Entity { privileged aspect Person_Roo_Entity {
Loading…
Cancel
Save