Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xwiki-platform
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XWiki
xwiki-platform
Commits
1fc8e38e
Commit
1fc8e38e
authored
4 years ago
by
Vincent Massol
Browse files
Options
Downloads
Patches
Plain Diff
[Misc] Remove unnecessary code
parent
e5166a14
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/store/migration/XWikiMigrationManagerTest.java
+5
-6
5 additions, 6 deletions
.../xpn/xwiki/store/migration/XWikiMigrationManagerTest.java
with
5 additions
and
6 deletions
xwiki-platform-core/xwiki-platform-oldcore/src/test/java/com/xpn/xwiki/store/migration/XWikiMigrationManagerTest.java
+
5
−
6
View file @
1fc8e38e
...
...
@@ -87,7 +87,7 @@ public void migrate()
@Override
protected
List
<
DataMigration
>
getAllMigrations
()
{
List
<
DataMigration
>
lst
=
new
ArrayList
<
DataMigration
>();
List
<
DataMigration
>
lst
=
new
ArrayList
<>();
lst
.
add
(
createMigrator
(
345
));
lst
.
add
(
createMigrator
(
123
));
lst
.
add
(
createMigrator
(
456
));
...
...
@@ -99,7 +99,7 @@ protected List<DataMigration> getAllMigrations()
XWikiDBVersion
curversion
;
@Override
protected
void
initializeEmptyDB
()
throws
DataMigrationException
protected
void
initializeEmptyDB
()
{
}
...
...
@@ -131,7 +131,7 @@ protected void setUp() throws Exception
super
.
setUp
();
getContext
().
setWiki
(
new
XWiki
()
{
@Override
public
List
<
String
>
getVirtualWikisDatabaseNames
(
XWikiContext
context
)
throws
XWikiException
public
List
<
String
>
getVirtualWikisDatabaseNames
(
XWikiContext
context
)
{
return
Arrays
.
asList
(
"xwiki"
);
}
...
...
@@ -143,8 +143,7 @@ public List<String> getVirtualWikisDatabaseNames(XWikiContext context) throws XW
/** test migration if there are no data version */
public
void
testMigrationWhenNoVersion
()
throws
Exception
{
TestDataMigrationManager
mm
=
(
TestDataMigrationManager
)
getComponentManager
().
getInstance
(
DataMigrationManager
.
class
,
"TestDataMigration"
);
TestDataMigrationManager
mm
=
getComponentManager
().
getInstance
(
DataMigrationManager
.
class
,
"TestDataMigration"
);
Collection
neededMigration
=
mm
.
getNeededMigrations
();
assertEquals
(
0
,
neededMigration
.
size
());
mm
.
startMigrations
();
...
...
@@ -198,7 +197,7 @@ public boolean shouldExecute(XWikiDBVersion startupVersion)
}
@Override
public
void
migrate
()
throws
DataMigrationException
public
void
migrate
()
{
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment