Skip to content

Commit 648f6ff

Browse files
committed
Converted to 6.7.1. Dependency with ObjectHanling module instead of community commons
1 parent b6401c0 commit 648f6ff

27 files changed

+65
-60
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ UnitTesting
44
Module to run Mendix and JUnit unit tests inside a project.
55

66
## Dependencies
7-
- 'CoCo:ObjectHandling' module
7+
- 'ObjectHandling' module
88
- junit-4.11.jar
99
- org.apache.commons.io-2.3.0.jar
1010
- org.apache.commons.lang3.jar
@@ -14,7 +14,7 @@ Module to run Mendix and JUnit unit tests inside a project.
1414
## Installation
1515

1616
- Import the module in your project (from the Mendix AppStore or by downloading and exporting the module from this project)
17-
- Download the latest 'CoCo:ObjectHandling' module in your project
17+
- Download the latest 'ObjectHandling' module in your project
1818
- Map the module role 'TestRunner' to the applicable user roles in your application
1919
- Add the 'UnitTestOverview' microflow to your navigation structure or include the 'UnitTestOverview' snippet to a custom page.
2020
- [Optional for including JUnit tests] Set the `UnitTesting.FindJUnitTests` constant to true. (Please take [Project settings regarding Cloud Security](https://docs.mendix.com/mendixcloud/java-in-the-cloud#emulate-cloud-security) and [Security Constraits in the Mendix Cloud](https://docs.mendix.com/mendixcloud/security-constraints-in-the-mendix-cloud) into consideration)

src/UnitTesting.mpr

0 Bytes
Binary file not shown.

src/javasource/coco_objecthandling/ImmutablePair.java renamed to src/javasource/objecthandling/ImmutablePair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package coco_objecthandling;
1+
package objecthandling;
22

33
import org.apache.commons.lang3.builder.HashCodeBuilder;
44

src/javasource/coco_objecthandling/ORM.java renamed to src/javasource/objecthandling/ORM.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package coco_objecthandling;
1+
package objecthandling;
22

33
import java.text.SimpleDateFormat;
44
import java.util.ArrayList;

src/javasource/coco_objecthandling/XPath.java renamed to src/javasource/objecthandling/XPath.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package coco_objecthandling;
1+
package objecthandling;
22

33
import java.lang.reflect.InvocationTargetException;
44
import java.lang.reflect.Method;
@@ -20,6 +20,7 @@
2020
import java.util.concurrent.ExecutorService;
2121
import java.util.concurrent.Executors;
2222
import java.util.concurrent.Future;
23+
import objecthandling.ImmutablePair;
2324

2425
import org.apache.commons.lang3.StringEscapeUtils;
2526
import org.apache.commons.lang3.StringUtils;
@@ -30,8 +31,6 @@
3031
import com.mendix.systemwideinterfaces.core.IMendixIdentifier;
3132
import com.mendix.systemwideinterfaces.core.IMendixObject;
3233

33-
import coco_objecthandling.ImmutablePair;
34-
3534
public class XPath<T>
3635
{
3736
/** Build in tokens, see: https://world.mendix.com/display/refguide3/XPath+Keywords+and+System+Variables

src/javasource/coco_objecthandling/actions/EndTransaction.java renamed to src/javasource/objecthandling/actions/EndTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Other code you write will be lost the next time you deploy the project.
88
// Special characters, e.g., é, ö, à, etc. are supported in comments.
99

10-
package coco_objecthandling.actions;
10+
package objecthandling.actions;
1111

1212
import com.mendix.systemwideinterfaces.core.IContext;
1313
import com.mendix.webui.CustomJavaAction;

src/javasource/coco_objecthandling/actions/StartTransaction.java renamed to src/javasource/objecthandling/actions/StartTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Other code you write will be lost the next time you deploy the project.
88
// Special characters, e.g., é, ö, à, etc. are supported in comments.
99

10-
package coco_objecthandling.actions;
10+
package objecthandling.actions;
1111

1212
import com.mendix.systemwideinterfaces.core.IContext;
1313
import com.mendix.webui.CustomJavaAction;

src/javasource/coco_objecthandling/actions/clone.java renamed to src/javasource/objecthandling/actions/clone.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Other code you write will be lost the next time you deploy the project.
88
// Special characters, e.g., é, ö, à, etc. are supported in comments.
99

10-
package coco_objecthandling.actions;
10+
package objecthandling.actions;
1111

1212
import com.mendix.systemwideinterfaces.core.IContext;
1313
import com.mendix.systemwideinterfaces.core.IMendixObject;
1414
import com.mendix.webui.CustomJavaAction;
15-
import coco_objecthandling.ORM;
15+
import objecthandling.ORM;
1616

1717
/**
1818
* Clones objects

src/javasource/coco_objecthandling/actions/commitInSeparateDatabaseTransaction.java renamed to src/javasource/objecthandling/actions/commitInSeparateDatabaseTransaction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Other code you write will be lost the next time you deploy the project.
88
// Special characters, e.g., é, ö, à, etc. are supported in comments.
99

10-
package coco_objecthandling.actions;
10+
package objecthandling.actions;
1111

1212
import com.mendix.core.Core;
1313
import com.mendix.systemwideinterfaces.core.IContext;

src/javasource/coco_objecthandling/actions/copyAttributes.java renamed to src/javasource/objecthandling/actions/copyAttributes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
// Other code you write will be lost the next time you deploy the project.
88
// Special characters, e.g., é, ö, à, etc. are supported in comments.
99

10-
package coco_objecthandling.actions;
10+
package objecthandling.actions;
1111

1212
import com.mendix.systemwideinterfaces.core.IContext;
1313
import com.mendix.systemwideinterfaces.core.IMendixObject;
1414
import com.mendix.webui.CustomJavaAction;
15-
import coco_objecthandling.ORM;
15+
import objecthandling.ORM;
1616

1717
/**
1818
* Copies all common primitive attributes from source to target, which are not necessarily of the same type. This is useful to, for example, translate persistent object into non-persistant (view) objects.

0 commit comments

Comments
 (0)