BAEL-430: Added performance tests for mapping frameworks (#4092)
* BAEL-430: Added performance tests for mapping frameworks * Fixes * Removed @Test annotation.
This commit is contained in:
committed by
Grzegorz Piwowarek
parent
1d0a6248e5
commit
0dfaafac5c
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<mappings xmlns="http://dozer.sourceforge.net"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://dozer.sourceforge.net
|
||||
http://dozer.sourceforge.net/schema/beanmapping.xsd">
|
||||
|
||||
<configuration>
|
||||
<stop-on-errors>true</stop-on-errors>
|
||||
<date-format>MM/dd/yyyy HH:mm</date-format>
|
||||
<wildcard>true</wildcard>
|
||||
</configuration>
|
||||
|
||||
<mapping>
|
||||
<class-a>com.baeldung.performancetests.model.source.SourceOrder</class-a>
|
||||
<class-b>com.baeldung.performancetests.model.destination.Order</class-b>
|
||||
<field>
|
||||
<a>status</a>
|
||||
<b>orderStatus</b>
|
||||
</field>
|
||||
</mapping>
|
||||
</mappings>
|
||||
Reference in New Issue
Block a user