Skip to content

Commit be7e9ef

Browse files
committed
[UIA-434] Upgraded to Mendix version 9.18.0 for Mendix 10 compatibility
1 parent ad34240 commit be7e9ef

123 files changed

Lines changed: 17542 additions & 13006 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.mendix.UnitTesting</groupId>
88
<artifactId>UnitTesting</artifactId>
9-
<version>9.1.0</version>
9+
<version>9.3.0</version>
1010

1111
<repositories>
1212
<repository>

src/UnitTesting.mpr

-17.7 MB
Binary file not shown.

src/javasource/system/actions/VerifyPassword.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public java.lang.Boolean executeAction() throws Exception
4040

4141
/**
4242
* Returns a string representation of this action
43+
* @return a string representation of this action
4344
*/
4445
@java.lang.Override
4546
public java.lang.String toString()

src/javasource/unittesting/TestManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ private void runMfTearDown(TestSuite testSuite)
172172

173173
// Either we had a teardown a teardown or
174174
if (testSuite.getAutoRollbackMFs() && tearDownContext != null) {
175-
tearDownContext.rollbackTransAction();
175+
tearDownContext.rollbackTransaction();
176176
}
177177

178178
// Make sure we clean setupContext after running this test/suite
@@ -396,7 +396,7 @@ else if (Core.getReturnType(mf).getType() != IDataType.DataTypeEnum.Boolean &&
396396
}
397397
finally {
398398
if (testSuite.getAutoRollbackMFs())
399-
mfContext.rollbackTransAction();
399+
mfContext.rollbackTransaction();
400400
test.setLastStep(lastStep);
401401
test.setReadableTime((start > 10000 ? Math.round(start / 1000) + " seconds" : start + " milliseconds"));
402402
commitSilent(test);

src/javasource/unittesting/actions/FindAllUnitTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public java.lang.Boolean executeAction() throws Exception
3131

3232
/**
3333
* Returns a string representation of this action
34+
* @return a string representation of this action
3435
*/
3536
@java.lang.Override
3637
public java.lang.String toString()

src/javasource/unittesting/actions/ReportStepJava.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public java.lang.Boolean executeAction() throws Exception
3434

3535
/**
3636
* Returns a string representation of this action
37+
* @return a string representation of this action
3738
*/
3839
@java.lang.Override
3940
public java.lang.String toString()

src/javasource/unittesting/actions/RunAllUnitTestsWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public RunAllUnitTestsWrapper(IContext context, IMendixObject testRun)
3030
@java.lang.Override
3131
public java.lang.Boolean executeAction() throws Exception
3232
{
33-
this.testRun = __testRun == null ? null : unittesting.proxies.TestSuite.initialize(getContext(), __testRun);
33+
this.testRun = this.__testRun == null ? null : unittesting.proxies.TestSuite.initialize(getContext(), __testRun);
3434

3535
// BEGIN USER CODE
3636
try {
@@ -47,6 +47,7 @@ public java.lang.Boolean executeAction() throws Exception
4747

4848
/**
4949
* Returns a string representation of this action
50+
* @return a string representation of this action
5051
*/
5152
@java.lang.Override
5253
public java.lang.String toString()

src/javasource/unittesting/actions/RunUnitTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public RunUnitTest(IContext context, IMendixObject unitTest)
2828
@java.lang.Override
2929
public java.lang.Boolean executeAction() throws Exception
3030
{
31-
this.unitTest = __unitTest == null ? null : unittesting.proxies.UnitTest.initialize(getContext(), __unitTest);
31+
this.unitTest = this.__unitTest == null ? null : unittesting.proxies.UnitTest.initialize(getContext(), __unitTest);
3232

3333
// BEGIN USER CODE
3434
TestManager.instance().runTest(getContext(), unitTest);
@@ -38,6 +38,7 @@ public java.lang.Boolean executeAction() throws Exception
3838

3939
/**
4040
* Returns a string representation of this action
41+
* @return a string representation of this action
4142
*/
4243
@java.lang.Override
4344
public java.lang.String toString()

src/javasource/unittesting/actions/StartRemoteApiServlet.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public java.lang.Boolean executeAction() throws Exception
3535

3636
/**
3737
* Returns a string representation of this action
38+
* @return a string representation of this action
3839
*/
3940
@java.lang.Override
4041
public java.lang.String toString()

src/javasource/unittesting/actions/StartRunAllSuites.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public java.lang.Boolean executeAction() throws Exception
3131

3232
/**
3333
* Returns a string representation of this action
34+
* @return a string representation of this action
3435
*/
3536
@java.lang.Override
3637
public java.lang.String toString()

0 commit comments

Comments
 (0)