Skip to content

Console Output

Skipping 6,258 KB.. Full Log
      draws scale for WORK_WEEK with only showing every second label
02:14:40     displayMode: MONTH
02:14:40       draws scale
02:14:40       draws scale with only showing every second label
02:14:40     displayMode: CALENDAR_WEEK
02:14:40       draws scale for CALENDAR_WEEK displayMode
02:14:40       draws scale with only showing every second label
02:14:40       draws scale with only showing every third label
02:14:40     displayMode: YEAR
02:14:40       draws scale for YEAR displayMode
02:14:40       draws scale with only showing every second label
02:14:40       draws scale with only showing every third label
02:14:40   transformLeft/transformWidth
02:14:40     calculates left and width in WEEK mode for whole days
02:14:40     calculates left and width in WEEK mode for limitted day range
02:14:40     calculates left and width in WEEK mode for limitted day range (only firstHourOfDay set)
02:14:40   select
02:14:40     selects at least the number of intervals configured by display mode options
02:14:40     respects end of day if minSelectionIntervalCount is set
02:14:40 
02:14:40 scrollbars
02:14:40   onScroll
02:14:40     attaches handler to scrolling parents which execute when scrolling
02:14:40   offScroll
02:14:40     detaches handler from scrolling parents
02:14:40   isLocationInView
02:14:40     returns true if the given location is inside the given $scrollable
02:14:40     returns false if x of the given location is outside of the given $scrollable (smaller)
02:14:40     returns false if y of the given location is outside of the given $scrollable (smaller)
02:14:40     returns false if x of the given location is outside of the given $scrollable (greater)
02:14:40     returns false if y of the given location is outside of the given $scrollable (greater)
02:14:40   render
02:14:40     ensures parent has position absolute or relative
02:14:40 
02:14:40 BusyIndicator
02:14:40   render
02:14:40     uses entry point as parent if no $parent is provided
02:14:40     uses $parent as parent if provided
02:14:40 
02:14:40 ModelAdapter
02:14:40   can handle properties in any order
02:14:40   _syncPropertiesOnPropertyChange calls set* methods or setProperty method
02:14:40   init
02:14:40     copies properties to widget
02:14:40     sets default values
02:14:40   destroy
02:14:40     destroys the adapter and its children
02:14:40     does not destroy children, which are globally used
02:14:40   onModelPropertyChange
02:14:40     adapter
02:14:40       creates and registers the new adapter
02:14:40       destroys the old adapter
02:14:40     filters
02:14:40       propertyChange events
02:14:40         should send event when property change is triggered by widget
02:14:40         should not send event when property is triggered by server
02:14:40       widget events
02:14:40         should handle widget event when it is not filtered
02:14:40         should not handle widget event when it is filtered
02:14:40     export adapter
02:14:40       exportAdapterData should export last part of model-class as ID
02:14:40     adapters
02:14:40       creates and registers adapters
02:14:40       destroys the old adapters
02:14:40       destroys the old and creates the new adapters if the array contains both
02:14:40 
02:14:40 ResponseQueue
02:14:40   add
02:14:40     adds elements to the queue in the correct order
02:14:40     removes elements that are superseded by combined response
02:14:40   process
02:14:40     processes elements in the correct order
02:14:40     does not process elements in the wrong order
02:14:40     does not process same response twice
02:14:40 
02:14:40 Session
02:14:40   send
02:14:40     sends multiple async events in one call
02:14:40     sends multiple async events in one call over multiple user interactions if sending was delayed
02:14:40     does not await the full delay if a susequent send call has a smaller delay
02:14:40     does not await the full delay if a previous send call has a smaller delay
02:14:40     coalesces events if event provides a coalesce function
02:14:40     sends requests consecutively
02:14:40     sends requests consecutively and respects delay
02:14:40     queues ?poll results when user requests are pending
02:14:40     resumes polling after successful responses
02:14:40     does not resume polling after JS errors
02:14:40     does not resume polling after UI server errors
02:14:40     does not resume polling after HTTP errors
02:14:40     does not resume polling after session terminated
02:14:40   init
02:14:40     sends startup parameter
02:14:40     sends user agent on startup
02:14:40   texts
02:14:40     check if correct text is returned
02:14:40     check if empty text is returned
02:14:40     check if null text is returned
02:14:40     check if arguments are replaced in text
02:14:40     check if multiple arguments are replaced in text
02:14:40     check if undefined texts return an error message
02:14:40     optText returns undefined if key is not found
02:14:40     optText returns default value if key is not found
02:14:40     optText returns text if key found
02:14:40     optText returns text if key found, with arguments
02:14:40 
02:14:40 Splitter
02:14:40   renders the splitter at the given position
02:14:40 
02:14:40 SimpleTabArea
02:14:40   renders the tabs in the correct order
02:14:40 
02:14:40 TableAdapter
02:14:40   selectRows
02:14:40     sends rowsSelected event containing rowIds
02:14:40     does not send selection event if triggered by server
02:14:40   checkRows
02:14:40     sends rowsChecked event containing rowIds
02:14:40     does not send rowsChecked event if triggered by server
02:14:40   onModelAction
02:14:40     rowsSelected event
02:14:40       calls selectRows
02:14:40     rowsDeleted event
02:14:40       calls deleteRows
02:14:40       does not send rowsSelected event for the deleted rows
02:14:40     allRowsDeleted event
02:14:40       calls deleteAllRows
02:14:40       does not send rowsSelected event
02:14:40     rowsInserted event
02:14:40       calls insertRows
02:14:40       may contain cells as objects
02:14:40       may contain cells as scalars
02:14:40       respects null values
02:14:40       uses text as value if value is not provided
02:14:40     rowOrderChanged event
02:14:40       calls updateRowOrder
02:14:40       does not animate ordering for newly inserted rows
02:14:40     rowsUpdated event
02:14:40       calls updateRows
02:14:40     columnStructureChanged event
02:14:40       calls updateColumnStructure
02:14:40     columnOrderChanged event
02:14:40       calls updateColumnOrder
02:14:40     columnHeadersUpdated event
02:14:40       calls updateColumnHeaders
02:14:40   onModelPropertyChange
02:14:40     menus
02:14:40       creates and registers menu adapters
02:14:40       destroys the old menus
02:14:40       destroys the old and creates the new menus if the list contains both
02:14:40   _sendRowsFiltered
02:14:40     should not coalesce remove and 'add' events
02:14:40 
02:14:40 Table Filter
02:14:40   row filtering
02:14:40     applies row filter when table gets initialized
02:14:40     doesn't filter anymore if filter gets removed
02:14:40     applies row filter if a new row gets inserted
02:14:40     applies row filter if a new row gets inserted, even if table is not rendered
02:14:40     applies row filter if a row gets updated
02:14:40     applies row filter if a row gets updated, even if table is not rendered
02:14:40     properly handles successive row insertion and updates
02:14:40     properly handles reset table case
02:14:40     considers view range
02:14:40     renders empty data if all rows are removed due to filtering
02:14:40   selection
02:14:40     gets removed for non visible rows after filtering
02:14:40     stays removed even if filtered row is selected explicitly
02:14:40     gets removed for non visible rows after filtering if a row has been updated
02:14:40     gets restored for visible rows after filtering
02:14:40   events
02:14:40     rowsFiltered
02:14:40       gets fired when table with a filter is initializing
02:14:40       does not get fired when table with no filters is initializing
02:14:40       gets fired if filter() is called
02:14:40       gets fired if filter() is called, even if table is not rendered
02:14:40       gets not fired if rows are filtered again but the filtered rows have not changed
02:14:40       gets fired if rows are filtered during updateRows
02:14:40       gets fired if rows are filtered during insertRows
02:14:40       gets fired if rows are filtered during deleteRows
02:14:40       gets fired if rows are filtered during deleteAllRows
02:14:40       does not get fired if rows are updated but row filter state has not changed
02:14:40       gets sent to server containing rowIds when rows are filtered
02:14:40 
02:14:40 TableFooterSpec
02:14:40   render
02:14:40     attaches listener to the table but only once
02:14:40   remove
02:14:40     stops the open animation of the selected control
02:14:40     stops the close animation of the selected control
02:14:40   controls
02:14:40     removes old and renders new controls on property change
02:14:40   TableStatusTooltip
02:14:40     shows ERROR tooltip
02:14:40     shows INFO tooltip when table is rendered
02:14:40     hides INFO tooltip when user clicks in table
02:14:40     does not hide ERROR tooltip when user clicks in table
02:14:40 
02:14:40 TableHeaderMenu
02:14:40   filter
02:14:40     string column
02:14:40       shows the unique string values
02:14:40       converts multiline text to single line
02:14:40       strips html tags if html is enabled
02:14:40       reflects the state of the filter
02:14:40       correctly updates the list after inserting a new row, if a filter is applied
02:14:40       always displays the selected value, even if the table does not contain the value anymore
02:14:40       displays empty values as -empty-
02:14:40       stores selected text in filter.selectedValues
02:14:40       stores empty as null and not '-empty-'
02:14:40     grouping / sorting
02:14:40       count sorted columns
02:14:40       count grouped columns
02:14:40     boolean column
02:14:40       shows the unique string values
02:14:40     sort enabled
02:14:40       option enabled shows sort options in table header menu
02:14:40       option disabled does not show sort options in table header menu
02:14:40 
02:14:40 TableHeaderSpec
02:14:40   render
02:14:40     attaches listener to the table but only once
02:14:40 
02:14:40 TableKeyStrokes
02:14:40   key up
02:14:40     selects the above row
02:14:40     selects the last row if no row is selected yet
02:14:40     selects the second last row if all rows are selected
02:14:40     selects the only row if there is only one
02:14:40     does nothing if first row already is selected
02:14:40     if first row already is selected but is not the last action row, the row above the last action row gets selected
02:14:40     if there is a last action row, selects the row above last last action row
02:14:40     selects the row above the last action row even if the row above already is selected
02:14:40     uses last row of selection as last action row if last action row is not visible anymore
02:14:40      + shift
02:14:40       adds the row above to the selection
02:14:40       removes the row above from the selection if the last action row is the last row of the selection
02:14:40       if the row above the last action row is not selected, adds the row above to the selection
02:14:40   key down
02:14:40     selects the row below
02:14:40     selects the first row if no row is selected yet
02:14:40     selects the second row if all rows are selected
02:14:40     selects the only row if there is only one
02:14:40     does nothing if last row already is selected
02:14:40     if there is a last action row, selects the row below the last action row
02:14:40     selects the row below the last action row even if the row below already is selected
02:14:40     uses last row of selection as last action row if last action row is not visible anymore
02:14:40      + shift
02:14:40       adds the row below to the selection
02:14:40       removes the row below from the selection if the last action row is the first row of the selection
02:14:40       if the row below the last action row is not selected, adds the row below to the selection
02:14:40   end
02:14:40     selects last row
02:14:40      + shift
02:14:40       selects all rows from currently selected row to last row
02:14:40       preserves existing selection
02:14:40       considers last action row as start row for new selection
02:14:40       uses last row of selection as last action row if last action row is not visible anymore
02:14:40       does nothing if last row is already selected
02:14:40       does not add same rows to selectedRows twice
02:14:40   home
02:14:40     selects first row
02:14:40      + shift
02:14:40       selects all rows from currently selected row to first row
02:14:40       preserves existing selection
02:14:40       considers last action row as start row for new selection
02:14:40       uses first row of selection as last action row if last action row is not visible anymore
02:14:40       does nothing if first row is already selected
02:14:40       does not add same rows to selectedRows twice
02:14:40   space
02:14:40     does nothing if no rows are selected
02:14:40     checks the selected rows if first row is unchecked
02:14:40     does not modify already checked rows when checking
02:14:40     unchecks the selected rows if first row is checked
02:14:40   page up
02:14:40     selects the only row if there is only one
02:14:40   page down
02:14:40     selects the only row if there is only one
02:14:40 
02:14:40 Table
02:14:40   render
02:14:40     renders CSS class
02:14:40     renders a table header
02:14:40     renders table rows
02:14:40       accepts rows with cells
02:14:40       accepts rows with text only
02:14:40   _calculateViewRangeForRowIndex
02:14:40     returns a range based on viewRangeSize
02:14:40   rowIcons and checkable rows
02:14:40     creates an artificial cell when a rowIcon is set on a row
02:14:40   insertRows
02:14:40     inserts rows at the end of the table
02:14:40     renders rows only if view range is not full yet
02:14:40     rowsInserted event must be triggered before rowOrderChanged event
02:14:40   updateRows
02:14:40     updates the model cell texts
02:14:40     updates the html cell texts
02:14:40     does not fail if the row to update is the same instance as the existing one
02:14:40     does not destroy selection
02:14:40     silently updates rows which are not in view range
02:14:40   deleteRows
02:14:40     deletes single rows from model
02:14:40     deletes single rows from html document
02:14:40     considers view range (distinguishes between rendered and non rendered rows, adjusts viewRangeRendered)
02:14:40   deleteAllRows
02:14:40     deletes all rows from model
02:14:40     deletes all rows from html document
02:14:40     silently removes not rendered rows
02:14:40   updateRowOrder
02:14:40     reorders the model rows
02:14:40     reorders the html nodes
02:14:40     considers view range
02:14:40   checkRow
02:14:40     checks the row, does not uncheck others if multiCheck is set to true
02:14:40     unchecks other rows if multiCheck is set to false
02:14:40     does not check the row if checkable is set to false
02:14:40     does not check the row if the row is disabled
02:14:40     does not check the row if the table is disabled
02:14:40     considers view range
02:14:40     keeps added checkable column visible even when reloading factory settings
02:14:40     does not add an additional checkable column if one is already configured
02:14:40   selectRows
02:14:40     updates model
02:14:40     selects rendered rows and unselects others
02:14:40     considers view range
02:14:40     triggers rowsSelected
02:14:40     selectedRow() returns first selected row or null when table has no selection
02:14:40   toggle selection
02:14:40     selects all if not all are selected
02:14:40     selects none if all are selected
02:14:40   selectAll
02:14:40     selects all rows
02:14:40     considers view range -> renders selection only for rendered rows
02:14:40   doRowAction
02:14:40     sends rowAction event with row and column
02:14:40     does not send rowAction event if the row is not selected
02:14:40     does not send rowAction event if it is not the only one selected row
02:14:40   resizeColumn
02:14:40     updates column model and sends resize event 
02:14:40     does not send resize event when resizing is in progress
02:14:40     sends resize event when resizing is finished
02:14:40   autoResizeColumns
02:14:40     distributes the table columns using initialWidth as weight
02:14:40     excludes columns with fixed width
02:14:40     does not make the column smaller than the initial size
02:14:40     does not make the column smaller than a minimum size
02:14:40   sort
02:14:40     updates column model
02:14:40     model update
02:14:40       sets sortAscending according to direction param
02:14:40       resets properties on other columns
02:14:40       sets sortIndex
02:14:40       does not remove sortIndex for columns always included at begin
02:14:40       does not remove sortIndex for columns always included at end
02:14:40       does not remove sortIndex for columns always included at begin and end (combination)
02:14:40       removes column from sort columns
02:14:40     sends rowsSorted event when client side sorting is possible
02:14:40     sends sortRows event when client side sorting is not possible
02:14:40     sorts the data
02:14:40     regroups the data if group by column is active
02:14:40     restores selection after sorting
02:14:40     sorting
02:14:40       sorts text columns considering locale (if browser supports it)
02:14:40       sorts number columns
02:14:40       sorts date columns
02:14:40       uses non sort columns as fallback
02:14:40   column grouping
02:14:40     renders an aggregate row for each group
02:14:40     considers groupingStyle -> aggregate rows must be rendered previous to the grouped rows
02:14:40     considers view range -> only renders an aggregate row for rendered rows
02:14:40     considers view range -> doesn't render an aggregate row if the last row of the group is not rendered
02:14:40     regroups if rows get inserted
02:14:40     regroups if rows get inserted, event is from server and table was empty
02:14:40     does not regroup if rows get inserted, event is from server and table was not empty
02:14:40     regroups if rows get deleted
02:14:40     removes aggregate rows if all rows get deleted
02:14:40     regroups if rows get updated
02:14:40     may group column 0 only
02:14:40     may group column 1 only
02:14:40     may group columns 0 (avg) and 1 (sum)
02:14:40     may group columns 0, 1 and 2
02:14:40     may group columns 2 and 1
02:14:40     may group column 1 only after grouping column 0 first
02:14:40     may group column 1 and 2 after grouping column 0 first
02:14:40   row click
02:14:40     selects row and unselects others
02:14:40     sends selection and click events
02:14:40     sends only click if row already is selected
02:14:40     sends selection, checked and click events if table is checkable and checkbox has been clicked
02:14:40   right click on row
02:14:40     opens context menu
02:14:40     context menu only shows items without header type also if there is a type singleSelection
02:14:40     context menu only shows visible menus
02:14:40   _filterMenus
02:14:40     returns no menus for contextMenu if no row is selected
02:14:40     returns only single selection menus for contextMenu if one row is selected
02:14:40     returns only multi selection menus for contextMenu if multiple rows are selected
02:14:40     returns menus with single- and multi selection set for contextMenu if one or more rows are selected
02:14:40     returns only empty space menus if no row is selected
02:14:40     returns empty space and single selection menus if one row is selected
02:14:40     returns empty space and multi selection menus if multiple rows are selected
02:14:40     returns menus with empty space, single- and multi selection set if one or more rows are selected
02:14:40   row mouse down / move / up
02:14:40     selects multiple rows
02:14:40     only sends selection event, no click
02:14:40     only send one event for mousedown and immediate mouseup on the same row
02:14:40     only selects first row if mouse move selection or multi selection is disabled
02:14:40   moveColumn
02:14:40     moves column from oldPos to newPos
02:14:40     considers view range (does not fail if not all rows are rendered)
02:14:40   updateRowOrder
02:14:40     does not animate ordering for newly inserted rows
02:14:40   updateColumnStructure
02:14:40     resets the model columns
02:14:40     redraws the header to reflect header cell changes (text)
02:14:40     updates width of empty data
02:14:40   updateColumnOrder
02:14:40     reorders the model columns
02:14:40     reorders the html nodes
02:14:40     silently moves cells which are not rendered in view range
02:14:40   updateColumnHeaders
02:14:40     updates the text and sorting state of model columns
02:14:40     updates sort indices of the sort columns if a sort column got removed
02:14:40     updates the text and sorting state of html table header nodes
02:14:40     updates the custom css class of table header nodes
02:14:40   headerVisible
02:14:40     hides/shows the table header
02:14:40   Column visibility
02:14:40     update headers and rows when visibility of a column changes
02:14:40     visibleColumns() only return visible columns
02:14:40     moveColumn() must deal with different indices for visible and all columns
02:14:40 
02:14:40 BooleanColumn
02:14:40   table checkable column
02:14:40     a checkbox column gets inserted if table.checkable=true
02:14:40     no checkbox column gets inserted if table.checkable=false
02:14:40     this.checkableColumn is set to the new column
02:14:40     displays the row.checked state as checkbox
02:14:40   boolean column
02:14:40     displays the cell value as checkbox
02:14:40 
02:14:40 Column
02:14:40   considers horizontal alignment
02:14:40   converts linebreak into <br> in header cells
02:14:40   considers custom css class of a column
02:14:40   considers custom css class of a column, as well for checkbox columns
02:14:40   considers custom css class of a cell, if both are set only the cell class is used
02:14:40   considers htmlEnabled of a cell
02:14:40   caches encoded text of a cell to improve performance
02:14:40   multilineText
02:14:40     replaces
02:14:40  with br, but only if htmlEnabled is false
02:14:40   textWrap
02:14:40     wraps text if column.textWrap and table.multilineText are true
02:14:40     does not wrap text if column.textWrap is false and table.multilineText is true
02:14:40     does not wrap text if column.textWrap is true and table.multilineText is false
02:14:40   initCell
02:14:40     sets the value and the text
02:14:40     calls formatValue to format the text
02:14:40     calls formatValue to format the text, also for cell objects
02:14:40     does not format the value if a text is provided
02:14:40     sets the value to null if only text is provided
02:14:40   setCellValue
02:14:40     sets the value and the text
02:14:40     calls formatValue to format the text
02:14:40   cell getters
02:14:40     cell() should return cell of given row
02:14:40     selectedCell() should return cell from selected row
02:14:40   displayable
02:14:40     if set to false, column may not be made visible
02:14:40 
02:14:40 NumberColumn
02:14:40   background effect
02:14:40     colorGradient1
02:14:40       colors cells from red to green
02:14:40       colors cells according to rounded values
02:14:40     considers view range -> only colors rendered cells
02:14:40     updates colors if row gets deleted
02:14:40     updates colors if row gets inserted
02:14:40     updates colors if row gets updated
02:14:40     colors cells if table gets rendered
02:14:40     restores existing background color if background effect gets removed
02:14:40     barChart
02:14:40       does not overwrite existing background color
02:14:40     setBackgroundEffect
02:14:40       changes the background effect
02:14:40       sends columnBackgroundEffectChanged event
02:14:40       does not send columnBackgroundEffectChanged if server triggered it
02:14:40   calculateMinMaxValues
02:14:40     calculates the min/max values based on rounded values
02:14:40 
02:14:40 scout.comparators
02:14:40   tests 'compare' method of TEXT comparator
02:14:40   tests 'compareIgnoreCase' method of TEXT comparator
02:14:40   tests 'compare' method of NUMERIC comparator
02:14:40   tests 'compare' method of ALPHANUMERIC comparator
02:14:40   tests 'compareIgnoreCase' method of ALPHANUMERIC comparator
02:14:40   tests 'compareIgnoreCase' method of ALPHANUMERIC comparator with session
02:14:40 
02:14:40 AggregateTableControl
02:14:40   aggregate
02:14:40     creates an aggregate row
02:14:40     sums up numbers in a number column
02:14:40     aggregation type none does not aggregate
02:14:40     sums up numbers in a number column but only on filtered rows
02:14:40     sums up numbers in a number column and considers format pattern
02:14:40     sums up numbers in a number column and considers rounded values fo aggregation
02:14:40   eanbled state
02:14:40     is false if there are no number columns
02:14:40     is true if there is at least one number column
02:14:40     is false if there is a number column but without an aggregate function
02:14:40 
02:14:40 TableControl
02:14:40   selected
02:14:40     opens and closes the control container
02:14:40     removes the content of the previous selected control without closing the container
02:14:40     sends selected events (for current and previous selection)
02:14:40 
02:14:40 CellEditor
02:14:40   mouse click
02:14:40     starts cell edit if cell is editable
02:14:40     does not start cell edit if cell is not editable
02:14:40     does not start cell edit if row is disabled
02:14:40     does not start cell edit if table is disabled
02:14:40     does not start cell edit if mouse down and up happened on different cells
02:14:40     does not start cell edit if right mouse button was pressed
02:14:40     does not start cell edit if middle mouse button was pressed
02:14:40     does not open cell editor if a ctrl or shift is pressed, because the user probably wants to do row selection rather than cell editing
02:14:40   startCellEdit event
02:14:40     opens popup with field
02:14:40   endCellEdit event
02:14:40     destroys the field
02:14:40     removes the cell editor popup
02:14:40   completeEdit
02:14:40     sends completeCellEdit
02:14:40     sends completeCellEdit only once
02:14:40     does not remove the popup and its field (will be done by endCellEdit)
02:14:40   cancelEdit
02:14:40     sends cancelCellEdit
02:14:40     removes the popup and its field
02:14:40   validation
02:14:40     shows a tooltip if field has an error
02:14:40     does not sho a tooltip if field has no error
02:14:40   popup recovery
02:14:40     reopens popup if row gets updated
02:14:40     closes popup if row gets deleted
02:14:40     closes popup if all rows get deleted
02:14:40     closes popup (before) table is detached
02:14:40     closes popup when table is removed
02:14:40   tooltip recovery
02:14:40     removes tooltip if row gets deleted
02:14:40 
02:14:40 DateColumnUserFilter
02:14:40   acceptByFields works
02:14:40   acceptByFields works with time
02:14:40   addFilterFields must not create date fields with time
02:14:40 
02:14:40 TableTextUserFilter
02:14:40   filter
02:14:40     filters rows based on cell text
02:14:40     separates cell values with whitepace
02:14:40     works with bean columns
02:14:40 
02:14:40 DateFormat
02:14:40   format
02:14:40     considers d M y
02:14:40     considers h H m a
02:14:40     considers E
02:14:40   parse
02:14:40     considers d M y
02:14:40     considers h H m a
02:14:40   analyze
02:14:40     analyzes the text and returns an object with months, years and days
02:14:40       considers pattern dd.MM.yyyy
02:14:40       considers pattern yyyy-MM-dd
02:14:40       considers pattern MM/dd/yyy
02:14:40       checks correct handling of am/pm
02:14:40       proposes valid dates for pattern dd.MM.yyyy
02:14:40       proposes valid dates for pattern MM.yyyy
02:14:40       proposes valid dates for pattern yyyy
02:14:40       proposes valid times
02:14:40 
02:14:40 DecimalFormat
02:14:40   format
02:14:40     considers decimal separators
02:14:40     considers grouping separators
02:14:40     can swap the position of the minus sign
02:14:40     can handle invalid patterns
02:14:40     distinguishes digits and zero digits
02:14:40     can handle positive and negative subpattern
02:14:40     can handle exotic symbols
02:14:40     can handle percentages, format taken from application
02:14:40     can handle multiplier
02:14:40     can handle rounding mode
02:14:40   round
02:14:40     can handle rounding modes
02:14:40 
02:14:40 TextMap
02:14:40   get
02:14:40     returns correct text for key
02:14:40     may return empty text
02:14:40     may return null text
02:14:40     replaces arguments in text
02:14:40     may replace multiple arguments
02:14:40     returns a text containing undefinied if the key is not found
02:14:40     does a parent lookup if key is not found
02:14:40     returns a text containing undefinied if neither child nor parent contains the key
02:14:40   optGet
02:14:40     returns undefined if key is not found
02:14:40     returns default value if key is not found
02:14:40     returns text if key is found
02:14:40     returns text if key is found, with arguments
02:14:40     replaces the same placeholder if used multiple times
02:14:40     does a parent lookup if key is not found
02:14:40 
02:14:40 scout.texts
02:14:40   init
02:14:40     creates Texts objects for each language tag given in the model
02:14:40     links Texts objects according the sub tags of the language tag
02:14:40     does not override existing text maps
02:14:40   get
02:14:40     returns the Texts for the given language tag
02:14:40     returns a Texts object with correct linking
02:14:40     creates an empty Texts object with correct linking if language tag is unknown
02:14:40 
02:14:40 scout.tooltips
02:14:40   can be installed and uninstalled for a form field
02:14:40   creates a tooltip on mouseenter and removes it on mouseleave
02:14:40   if text
02:14:40     is empty no tooltip will be shown
02:14:40     is a function, it will be called for tooltip text
02:14:40     is undefined no tooltip will be shown
02:14:40     is provided by component, it will be used as tooltip text
02:14:40     is provided as function by component, it will be called and used as tooltip text
02:14:40     is provided using options and by component, text provided using options will be used
02:14:40     is a function, component is passed as first and only argument
02:14:40 
02:14:40 CompactTreeAdapter
02:14:40   selectNodes
02:14:40     selects child node and notifies server if server selects the first title node
02:14:40 
02:14:40 Compacttree
02:14:40   creation
02:14:40     adds no empty section node
02:14:40     adds a node with child node
02:14:40     adds a node with child nodes in correct order
02:14:40     deletes a node
02:14:40     inserts a child node
02:14:40   node click
02:14:40     calls selectNodes
02:14:40 
02:14:40 TreeAdapter
02:14:40   node click
02:14:40     sends selection and click events in one call in this order
02:14:40     sends selection, check and click events if tree is checkable and checkbox has been clicked
02:14:40     does not send click if mouse down happens on another node than mouseup
02:14:40     does not send click if mouse down does not happen on a node
02:14:40   node double click
02:14:40     sends clicked, selection, action and expansion events
02:14:40   node control double click
02:14:40     sends clicked, selection, action and expansion events
02:14:40   selectNodes
02:14:40     sends nodeExpanded for the parents if a hidden node should be selected whose parents are collapsed (revealing the selection)
02:14:40     does not send selection event if triggered by server
02:14:40   checkNodes
02:14:40     does not send checked event if triggered by server
02:14:40   setNodesExpanded
02:14:40     does not send expand event if triggered by server
02:14:40   collapseAll
02:14:40     sends nodeExpanded for every collapsed node
02:14:40   onModelAction
02:14:40     nodesInserted event
02:14:40       calls insertNodes
02:14:40     nodesDeleted event
02:14:40       calls deleteNodes
02:14:40     allChildNodesDeleted event
02:14:40       calls deleteAllChildNodes
02:14:40     nodesSelected event
02:14:40       calls selectNodes
02:14:40     nodeChanged event
02:14:40       calls changeNode
02:14:40       updates the text of the node
02:14:40     nodesUpdated event
02:14:40       calls updateNodes
02:14:40     childNodeOrderChanged event
02:14:40       calls updateNodeOrder
02:14:40     multiple events
02:14:40       handles delete, collapse, insert, expand events correctly
02:14:40 
02:14:40 TreeKeyStrokes
02:14:40   key up
02:14:40     selects the above node in collapsed tree
02:14:40     selects the above node node in expanded tree
02:14:40     selects the last node if no node is selected yet
02:14:40     selects the only node if there is only one
02:14:40     does nothing if first node already is selected
02:14:40   key down
02:14:40     selects the node below in collapsed tree
02:14:40     selects the first node if no row is selected yet
02:14:40     selects the above node node in expanded tree
02:14:40     selects the only node if there is only one
02:14:40     does nothing if last node already is selected
02:14:40   Home
02:14:40     selects first node in collapsed tree
02:14:40     selects first node in expanded tree
02:14:40   Subtract
02:14:40      collapses a node
02:14:40      collapses a node and drill up
02:14:40   Add
02:14:40      expands a node
02:14:40      expands a node and drill down
02:14:40   End
02:14:40      jumps to last node
02:14:40   space
02:14:40     does nothing if no nodes are selected
02:14:40     checks the selected node 
02:14:40     unchecks the selected node 
02:14:40 
02:14:40 TreeNodePosition
02:14:40   _findInsertPositionInFlatList
02:14:40     insert node between two other nodes on the same level
02:14:40     insert node between two other nodes on another level
02:14:40     insert node ahead all other nodes on the same level
02:14:40     insert node below all other nodes on the same level
02:14:40     insert a subtree between two other nodes on the same level
02:14:40     insert a node below another node of the same level with an expanded subtree
02:14:40   _addChildrenToFlatListIfExpanded
02:14:40     expands collapsed node
02:14:40     expands collapsed node with different levels in insertBatch
02:14:40 
02:14:40 Tree
02:14:40   creation
02:14:40     adds nodes
02:14:40     does not add notes if no nodes are provided
02:14:40   insertNodes
02:14:40     inserting a child
02:14:40       inserts in a reasonable order if childNodeIndex is not set
02:14:40       updates model
02:14:40       updates model with a complex node containing another node
02:14:40       updates html document if parent is expanded
02:14:40       updates html document at a specific position
02:14:40     only updates the model if parent is collapsed
02:14:40     expands the parent if parent.expanded = true and the new inserted nodes are the first child nodes
02:14:40     with breadcrumb style
02:14:40       inserts a html node if the parent node is selected
02:14:40       only updates model if the parent node is not selected
02:14:40       inserts html nodes at a specific position
02:14:40     expands the parent if parent.expanded = true and the new inserted nodes are the first child nodes
02:14:40   updateNodes
02:14:40     update same node instance
02:14:40     enabled update
02:14:40       updates the enabled state of the model node
02:14:40       updates the enabled state of the html node, if visible
02:14:40       updates the enabled state of the html node after expansion, if not visible
02:14:40     enabled update on checkable tree
02:14:40       updates the enabled state of the model node
02:14:40       updates the enabled state of the html node, if visible
02:14:40       updates the enabled state of the html node after expansion, if not visible
02:14:40   changeNode
02:14:40     updates the text of the model node
02:14:40     updates the text of the html node
02:14:40     updates custom cssClass of model and html node
02:14:40     preserves child-of-selected when root nodes get changed
02:14:40     preserves child-of-selected when child nodes get changed
02:14:40     preserves group css class when nodes get updated
02:14:40   deleteNodes
02:14:40     deleting a child
02:14:40       updates model
02:14:40       updates html document
02:14:40       updates child node indices
02:14:40       considers view range (distinguishes between rendered and non rendered rows, adjusts viewRangeRendered)
02:14:40     deleting a root node
02:14:40       updates model
02:14:40       updates html document
02:14:40       deleting a collapsed root node
02:14:40         updates model
02:14:40         updates html document
02:14:40     deleting all nodes
02:14:40       updates model
02:14:40       updates html document
02:14:40   deleteAllChildNodes
02:14:40     deletes all nodes from model
02:14:40     deletes all nodes from html document
02:14:40     deletes all nodes from model for a given parent
02:14:40     deletes all nodes from html document for a given parent
02:14:40   checkNodes
02:14:40     checks a subnode -> mark upper nodes 
02:14:40     checks a node -> mark upper nodes -> uncheck node and test if node keeps marked because children are checked
02:14:40     checks a subnode and its sibling -> mark upper nodes -> uncheck one of the siblings
02:14:40     does not check a disabled node
02:14:40     does not check a node in a disabled tree
02:14:40     never checks two nodes if multiCheck is set to false
02:14:40     checks children if autoCheckChildren is set to true
02:14:40     does not check the children if autoCheckChildren is set to false
02:14:40     does not check nodes if checkable is set to false
02:14:40   node click
02:14:40     calls tree._onNodeMouseDown
02:14:40     updates model (selection)
02:14:40   node double click
02:14:40     expands/collapses the node
02:14:40   node control double click
02:14:40     does the same as control single click (does NOT expand and immediately collapse again)
02:14:40   deselectAll
02:14:40     clears the selection
02:14:40   selectNodes
02:14:40     selects a node
02:14:40     selectedNode()
02:14:40     expands the parents if a hidden node should be selected whose parents are collapsed (revealing the selection)
02:14:40     also expands the node if bread crumb mode is enabled
02:14:40     also expands the parents in breadcrumb mode if a hidden node should be selected after being expanded and collapsed while in its hidden state
02:14:40     sets css class ancestor-of-selected on every ancestor of the selected element
02:14:40     sets css class child-of-selected on direct children of the selected element
02:14:40     may select a node which is not rendered
02:14:40     sets parent and ancestor css classes even if nodes are not rendered
02:14:40     sets child-of-selected css class even if nodes are not rendered
02:14:40   expandNode
02:14:40     sets css class child-of-selected on direct children if the expanded node is selected
02:14:40     renders the child nodes if parent is expanded
02:14:40     with breadcrumb style
02:14:40       renders the child nodes if parent is expanded
02:14:40       ensures top level nodes are rendered
02:14:40   expandAllParentNodes
02:14:40     expands all parent nodes of the given node (model)
02:14:40     expands all parent nodes of the given node (html)
02:14:40   collapseNode
02:14:40     prevents collapsing in bread crumb mode if node is selected
02:14:40   collapseAll
02:14:40     collapses all nodes
02:14:40   updateItemPath
02:14:40     Sets css class group on every element within the same group
02:14:40   updateNodeOrder
02:14:40     reorders the child nodes if parent is given (model)
02:14:40     reorders the child nodes if parent is given and expanded (model)
02:14:40     reorders the child nodes if parent is given (html)
02:14:40     considers view range when updating child node order
02:14:40     reorders expanded child nodes if parent is given (model)
02:14:40     reorders the root nodes if no parent is given (model)
02:14:40     reorders the root nodes if no parent is given (html)
02:14:40     reorders expanded root nodes if no parent is given (model)
02:14:40     reorders expanded root nodes if no parent is given (html)
02:14:40   tree filter
02:14:40     filters nodes when filter() is called
02:14:40     filters nodes when filter is added and removed
02:14:40     makes sure only filtered nodes are displayed when node gets expanded
02:14:40     applies filter if a node gets changed
02:14:40     applies filter if a node gets inserted
02:14:40     make sure nodes unchanged by filters are attached. See ticket #168957
02:14:40   tree enabled/disabled
02:14:40     disables checkboxes when tree is disabled
02:14:40   test visible list and map
02:14:40     with initial all expanded nodes
02:14:40       init with all expanded in correct order
02:14:40       collapse a node -> all children have to be removed
02:14:40       filter node -> filtered node and children has to be removed from visible
02:14:40       update node -> node is filtered
02:14:40       insert expanded node to expanded parent
02:14:40       insert child node in filtered parent
02:14:40       insert child node which should be filtered
02:14:40     with initial all closed nodes
02:14:40       init with all collapsed
02:14:40       insert child node collapsed parent
02:14:40       expand node
02:14:40       expand child node
02:14:40   destroy tree nodes
02:14:40     should destroy all tree nodes and set destroyed flag
02:14:40 
02:14:40 scout.Call
02:14:40   calls done on success
02:14:40   calls fail on failure
02:14:40   retries on failure
02:14:40 
02:14:40 Code
02:14:40   init
02:14:40     registers texts if texts property is set
02:14:40     uses the language configured by scout.codes.defaultLanguage as default
02:14:40     fails if text and texts are set
02:14:40   text
02:14:40     returns the text for the given languageTag (with texts property)
02:14:40     returns the text for the given locale (with texts property)
02:14:40     returns the text for the given languageTag (with text property)
02:14:40     returns the text for the given languageTag (with text property including a text key)
02:14:40 
02:14:40 CodeType
02:14:40   init
02:14:40     creates codes and hierarchy
02:14:40   add
02:14:40     adds new root code to codeType
02:14:40     adds new child code to codeType
02:14:40   get
02:14:40     returns code with codeId
02:14:40     throws error for unknown codeId
02:14:40   getCodes
02:14:40     returns all codes
02:14:40     returns root codes
02:14:40 
02:14:40 DetachHelper
02:14:40   restores sticky tooltips
02:14:40   removes tooltip when achor is detached
02:14:40   considers the context of $anchor -> only removes tooltips in that context
02:14:40 
02:14:40 Device
02:14:40   scout.device
02:14:40     is initialized automatically
02:14:40   isWindowsTablet
02:14:40     returns true when browser is Edge and scrollbarWidth is 0
02:14:40   user agent parsing
02:14:40     recognizes iOS devices
02:14:40     recognizes Android devices
02:14:40     recognizes normal Windows PCs
02:14:40     recognizes supported browsers
02:14:40 
02:14:40 EventSupport
02:14:40   on / trigger / off
02:14:40     single event func only triggered until off() is called
02:14:40     multiple events
02:14:40   one
02:14:40     single event func only triggered once when registered with one()
02:14:40     event parameter passed to registered func
02:14:40     de-register function registered with one()
02:14:40   off
02:14:40     remove all with same type
02:14:40     remove specific listener
02:14:40 
02:14:40 Range
02:14:40   equals
02:14:40   union
02:14:40     returns a new range with the sum of both ranges
02:14:40     returns a copy of both ranges if the ranges don't overlap
02:14:40     returns a copy of the non empty range if one range is empty
02:14:40   subtract
02:14:40     returns a new range where the second range is removed from the first
02:14:40     returns a copy of the first range if the second does not overlap the first
02:14:40     returns an empty range if second range completely covers the first
02:14:40     returns a new range if second range is inside the first and touches a border
02:14:40     returns an array of two ranges if second range is inside the first but does not touch a border
02:14:40     returns a copy of the first range if the second range is empty
02:14:40     returns an empty range if the first range is empty
02:14:40   subtractAll
02:14:40     subtracts all given ranges
02:14:40     may return multiple ranges
02:14:40   intersect
02:14:40     returns a new range with the part where both ranges overlap
02:14:40     returns an empty range if the ranges don't overlap
02:14:40     returns an empty range if one range is empty
02:14:40 
02:14:40 scout.URL
02:14:40   can parse super-simple URL
02:14:40   can parse empty hash
02:14:40   can parse a moderately simple URL
02:14:40   can convert the URL to string (only changed in order of arguments)
02:14:40   can handle multi-valued parameters
02:14:40   can add parameters
02:14:40   can remove parameters
02:14:40   can create or replace parameters
02:14:40   can handle non-ascii characters
02:14:40   can sort parameters
02:14:40 
02:14:40 scout.arrays
02:14:40   init
02:14:40     checks whether array has correct length and initial values
02:14:40   ensure
02:14:40     creates an array if the param is not an array
02:14:40     returns the param if the param already is an array
02:14:40   remove
02:14:40     removes elements
02:14:40   removeAll
02:14:40     removes all given elements
02:14:40     considers emtpy args
02:14:40   replace
02:14:40     replaces elements
02:14:40   insert
02:14:40     insert element at index
02:14:40   insertArray
02:14:40     insert element array at index
02:14:40   max
02:14:40     returns 0 iff input contains 0
02:14:40     behaves like Math.max on null and undefined
02:14:40     ignores non-number elements
02:14:40   min
02:14:40     returns 0 iff input contains 0
02:14:40     behaves like Math.min on null and undefined
02:14:40     ignores non-number elements
02:14:40   move
02:14:40     replaces elements
02:14:40   union
02:14:40     merges two arrays
02:14:40     merges two arrays and removes duplicates
02:14:40     also works with floats
02:14:40     if the arrays contain objects instead of primitives, it uses their id to check for equality
02:14:40     does not fail if arr1 or arr2 are not defined
02:14:40   equals
02:14:40     checks whether two arrays contain the same elements in the same order
02:14:40     considers emtpy and same arrays
02:14:40     returns true if one array is undefined/null and the other empty
02:14:40   equalsIgnoreOrder
02:14:40     checks whether two arrays contain the same elements without considering the order
02:14:40     considers emtpy and same arrays
02:14:40     returns true if one array is undefined/null and the other empty
02:14:40   findIndex
02:14:40     returns the index of the element for which the given predicate returns true
02:14:40   find
02:14:40     returns the element for which the given predicate returns true
02:14:40   findFrom
02:14:40     returns the element for which the given predicate returns true, starting from a given index
02:14:40     does not return the element for which the given predicate returns true, if it is on the left side of the start index
02:14:40     also checks the element at start index 
02:14:40     searches from right to left if backwards is true
02:14:40   format
02:14:40     formats an array by concatenating each entry
02:14:40     returns '' for empty array or if no array was provided
02:14:40   formatEncoded
02:14:40     encodes the html of each array element
02:14:40   first
02:14:40     finds first array element
02:14:40   last
02:14:40     finds last array element
02:14:40 
02:14:40 scout.codes
02:14:40   can init without data
02:14:40   finds a code type by ID
02:14:40   finds a code by ID (single and two parameter call)
02:14:40   throws an error when code type is not found
02:14:40   throws an error when code is not found
02:14:40   optGet
02:14:40     should work as get if code exists
02:14:40     should return null if code does not exist
02:14:40   add
02:14:40     adds a code type or an array of code types
02:14:40 
02:14:40 scout.dates
02:14:40   shift
02:14:40     shifts year or month or day
02:14:40     shifts year and month if both provided
02:14:40     shifts year and month and day if all provided
02:14:40     shift year
02:14:40       adds or removes years
02:14:40       handles edge case leap year
02:14:40     shift month
02:14:40       adds or removes months
02:14:40       handles edge case start month
02:14:40       handles edge case end month
02:14:40       handles edge case leap year
02:14:40   shiftToNextDayOfType
02:14:40     shifts to next day of type
02:14:40   shiftToPreviousDayOfType
02:14:40     shifts to previous day of type
02:14:40   ensureMonday
02:14:40     shifts to next monday in direction if it is not a monday yet
02:14:40   isSameDay
02:14:40     returns true if day, month and year matches
02:14:40   compareMonths
02:14:40     returns the differences in number of months
02:14:40     ignores time
02:14:40     works with different years
02:14:40   compareDays
02:14:40     returns the differences in number of days
02:14:40     ignores time
02:14:40     works with different month
02:14:40     works with different years
02:14:40   timestamp
02:14:40     returns a string of the expected length withonly digits
02:14:40   orderWeekdays
02:14:40     orders weekdays
02:14:40   toJsonDate / parseJsonDate
02:14:40     can handle missing or invalid inputs
02:14:40     can convert JSON and JS dates
02:14:40   create
02:14:40     can create dates
02:14:40   weekInYear
02:14:40     can calculate week in year
02:14:40   format
02:14:40     can handle invalid values
02:14:40     can format valid dates
02:14:40   compare
02:14:40     can handle invalid dates
02:14:40     can compare valid dates
02:14:40   equals
02:14:40     returns true if the dates are equal, false if not
02:14:40   isLeapYear
02:14:40     correctly identifies leap years
02:14:40   combineDateTime
02:14:40     creates a new date by using date part of param date and time part of param time.
02:14:40     uses 01-01-1970 as date part if date is ommitted
02:14:40     uses 00:00 as time part if time is ommitted
02:14:40 
02:14:40 scout.defaultValues
02:14:40   init
02:14:40     can load invalid configurations
02:14:40   applyTo
02:14:40     can apply default values to JSON
02:14:40     can apply default values to JSON considering the model variant
02:14:40     copies default values 'by value'
02:14:40 
02:14:40 scout.icons
02:14:40   parses bitmap icons
02:14:40   parses font icons (scoutIcons font)
02:14:40   parses font icons (custom font)
02:14:40   parses returns a CSS class for custom fonts
02:14:40   appends CSS class string with custom fonts
02:14:40 
02:14:40 scout.models
02:14:40   get
02:14:40     load object without type
02:14:40     ensure the object is a copy
02:14:40   extend
02:14:40     insert new property into root object
02:14:40     override property in root object
02:14:40     insert new property into a non existing array on root object
02:14:40     override property in tree object
02:14:40     insert new object into tree object
02:14:40     insert new object tree into tree object
02:14:40     insert new object into tree object with fixed index
02:14:40     insert new object into tree object with relative index
02:14:40     insert new object into tree object with relative index and two extension elements
02:14:40     insert object referenced by String
02:14:40     insert object bound to field
02:14:40     insert objects array bound to field
02:14:40 
02:14:40 scout.numbers
02:14:40   round
02:14:40     tests special cases
02:14:40     tests rounding mode 'UP'
02:14:40     tests rounding mode 'DOWN'
02:14:40     tests rounding mode 'CEILING'
02:14:40     tests rounding mode 'FLOOR'
02:14:40     tests rounding mode 'HALF_UP'
02:14:40     tests rounding mode 'HALF_DOWN'
02:14:40   shiftDecimalPoint
02:14:40     can shift decimal point to left and right
02:14:40   randomId
02:14:40     can generate random IDs
02:14:40   correlationId
02:14:40     can generate random correlation IDs
02:14:40 
02:14:40 scout.objects
02:14:40   copyProperties
02:14:40     copies all properties
02:14:40     copies the properties from prototype as well
02:14:40   countOwnProperties
02:14:40     counts all own properties
02:14:40   valueCopy
02:14:40     copies an object by value
02:14:40   isNumber
02:14:40     returns true iff argument is a number
02:14:40   isArray
02:14:40     returns true when argument is an array
02:14:40   isNullOrUndefined
02:14:40     returns true when argument is null or undefined, but not when 0 or any other value
02:14:40   values
02:14:40     returns object values
02:14:40     can handle maps
02:14:40   findChildObjectByKey
02:14:40     find root object
02:14:40     find object in tree
02:14:40     find object in array
02:14:40     find object in nested array
02:14:40     find object in array within the tree
02:14:40     search for not existing property
02:14:40     search for not existing id
02:14:40     search for not existing property and value
02:14:40 
02:14:40 scout.promises
02:14:40   oneByOne stops executing after failure
02:14:40   groupwise stops executing after failed group
02:14:40   parallel stops executing after failed promise
02:14:40   does not cut off error arguments
02:14:40   adds all result arguments, one for each deferred
02:14:40 
02:14:40 scout.strings
02:14:40   nl2br
02:14:40     can convert newlines to br tags
02:14:40     encodes html, if the parameter is set to true (default)
02:14:40   hasText
02:14:40     can check if string has text
02:14:40   repeat
02:14:40     can repeat strings
02:14:40   padZeroLeft
02:14:40     can pad strings with 0
02:14:40   startsWith
02:14:40     can check if a string starts with another
02:14:40   endsWith
02:14:40     can check if a string ends with another
02:14:40   count
02:14:40     can count occurrences
02:14:40   encode
02:14:40     encodes html
02:14:40     does not try to encode empty strings
02:14:40     caches the html element used for encoding
02:14:40   join
02:14:40     joins strings
02:14:40     join works with array as second parameter
02:14:40   box
02:14:40     boxes strings
02:14:40   lowercaseFirstLetter
02:14:40     converts first letter to lowercase
02:14:40   quote
02:14:40     quotes special characters for regexp
02:14:40   asString
02:14:40     converts input to string
02:14:40   plainText
02:14:40     converts html to plain text
02:14:40     does not try to get plaintext of empty strings
02:14:40     caches the html element used for getting plain text
02:14:40     considers upper and lower case tags
02:14:40     converts br, p, div into new lines
02:14:40     converts li, tr into new lines
02:14:40     converts td into whitespaces
02:14:40     converts &nbsp;, &amp;, &gt;, &lt;
02:14:40     preserves tabs
02:14:40     removes leading and trailing newlines if configured
02:14:40     leaves multiple newlines alone unless configured
02:14:40   insertAt
02:14:40     can insert strings into other strings
02:14:40   nvl
02:14:40     returns an empty string when input is null or undefined
02:14:40   countCodePoints
02:14:40     returns the number of codepoints in a string
02:14:40   splitMax
02:14:40     returns not more than limit elements
02:14:40 
02:14:40 Widget
02:14:40   rendering
02:14:40     should set rendering, rendered flags correctly
02:14:40     should set rendering flag to true _while_ the component is rendering
02:14:40   attach/detach
02:14:40     attached and rendered is false by default
02:14:40     attached and rendered has the right value after render/remove and attach/detach
02:14:40   triggerPropertyChange
02:14:40     fires the expected event object
02:14:40     changedProperties is only set when new and old value are not equals
02:14:40   clone
02:14:40     clones only properties marked as clone property
02:14:40     'text' must be recognized as clone property, but not '$container'
02:14:40     prefers properties passed as modelOverride
02:14:40   init
02:14:40     links widget properties with the widget
02:14:40   destroy
02:14:40     destroys the widget
02:14:40     destroys the children
02:14:40     does only destroy children if the parent is the owner
02:14:40     removes the link to parent and owner
02:14:40   setParent
02:14:40     links the widget with the new parent
02:14:40     removes the widget from the old parent if the old is not the owner
02:14:40     does not remove the widget from the old parent if the old is the owner
02:14:40     relinks parent destroy listener to the new parent
02:14:40   remove
02:14:40     removes the widget
02:14:40     removes the children
02:14:40     does not remove the children if owner is removed but parent is still rendered
02:14:40   setProperty
02:14:40     with widget property
02:14:40       links the widget with the new child widget
02:14:40       links the widget with the new child widgets if it is an array
02:14:40       does not fail if new widget is null
02:14:40     calls the _render* method if there is one for this property
02:14:40   property css class
02:14:40     adds or removes custom css class
02:14:40     does not accidentally remove other css classes on a property change
02:14:40     addCssClass
02:14:40       adds the cssClass to the existing classes
02:14:40       does not add the same class multiple times
02:14:40     removeCssClass
02:14:40       removes the cssClass from the existing classes
02:14:40 
02:14:40 Results: 1352 specs, 0 failures, 0 pending
02:14:40 
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/webjars,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/classpath,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/ext,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/ext,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/spec,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] stopped o.e.j.s.h.ContextHandler{/src,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT.jar
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-tests.jar
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-sources.jar
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-test-sources.jar
02:14:40 [INFO] 
02:14:40 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Skipping duplicate-finder execution!
02:14:40 [INFO] 
02:14:40 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Signature checking is skipped.
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.ui.html.test ---
02:14:40 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.ui.html.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT.jar
02:14:40 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/pom.xml to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.ui.html.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT.pom
02:14:40 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-tests.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.ui.html.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-tests.jar
02:14:40 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.ui.html.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-sources.jar
02:14:40 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.ui.html.test/target/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-test-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.ui.html.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.ui.html.test-6.1.0-SNAPSHOT-test-sources.jar
02:14:40 [INFO] 
02:14:40 [INFO] -------< org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html >--------
02:14:40 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html 6.1.0-SNAPSHOT [32/35]
02:14:40 [INFO] --------------------------------[ jar ]---------------------------------
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:40 [INFO] 
02:14:40 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:40 [INFO] Skipping Rule Enforcement.
02:14:40 [INFO] 
02:14:40 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] 
02:14:41 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] master_test_jacocoArgLine set to -javaagent:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/../org.eclipse.scout.rt/target/jacoco-all.exec
02:14:41 [INFO] 
02:14:41 [INFO] --- build-helper-maven-plugin:1.9.1:add-resource (add-js-resource) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:41 [INFO] Copying 1 resource
02:14:41 [INFO] Copying 5 resources
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Changes detected - recompiling the module!
02:14:41 [INFO] Compiling 2 source files to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/target/classes
02:14:41 [INFO] 
02:14:41 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:41 [INFO] skip non existing resourceDirectory /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/src/test/resources
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] No sources to compile
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] No tests to run.
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/target/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT.jar
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Skipping packaging of the test-jar
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/target/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT-sources.jar
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] No sources in project. Archive not created.
02:14:41 [INFO] 
02:14:41 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Skipping duplicate-finder execution!
02:14:41 [INFO] 
02:14:41 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Signature checking is skipped.
02:14:41 [INFO] 
02:14:41 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.svg.ui.html ---
02:14:41 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/target/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.svg.ui.html/6.1.0-SNAPSHOT/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT.jar
02:14:42 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/pom.xml to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.svg.ui.html/6.1.0-SNAPSHOT/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT.pom
02:14:42 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.svg.ui.html/target/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.svg.ui.html/6.1.0-SNAPSHOT/org.eclipse.scout.rt.svg.ui.html-6.1.0-SNAPSHOT-sources.jar
02:14:42 [INFO] 
02:14:42 [INFO] ----------< org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt >----------
02:14:42 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt 6.1.0-SNAPSHOT [33/35]
02:14:42 [INFO] --------------------------------[ jar ]---------------------------------
02:14:42 [INFO] 
02:14:42 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.jaxws.apt ---
02:14:42 [INFO] 
02:14:42 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.jaxws.apt ---
02:14:42 [INFO] Skipping Rule Enforcement.
02:14:42 [INFO] 
02:14:42 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] 
02:14:43 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] master_test_jacocoArgLine set to -javaagent:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/../org.eclipse.scout.rt/target/jacoco-all.exec
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:43 [INFO] Copying 1 resource
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Changes detected - recompiling the module!
02:14:43 [INFO] Compiling 12 source files to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/target/classes
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:43 [INFO] skip non existing resourceDirectory /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/src/test/resources
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] No sources to compile
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] No tests to run.
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/target/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT.jar
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Skipping packaging of the test-jar
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/target/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT-sources.jar
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] No sources in project. Archive not created.
02:14:43 [INFO] 
02:14:43 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Skipping duplicate-finder execution!
02:14:43 [INFO] 
02:14:43 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Signature checking is skipped.
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.jaxws.apt ---
02:14:43 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/target/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.jaxws.apt/6.1.0-SNAPSHOT/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT.jar
02:14:43 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/pom.xml to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.jaxws.apt/6.1.0-SNAPSHOT/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT.pom
02:14:43 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.jaxws.apt/target/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.jaxws.apt/6.1.0-SNAPSHOT/org.eclipse.scout.jaxws.apt-6.1.0-SNAPSHOT-sources.jar
02:14:43 [INFO] 
02:14:43 [INFO] -----< org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test >-----
02:14:43 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test 6.1.0-SNAPSHOT [34/35]
02:14:43 [INFO] --------------------------------[ jar ]---------------------------------
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:43 [INFO] 
02:14:43 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:43 [INFO] Skipping Rule Enforcement.
02:14:43 [INFO] 
02:14:43 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] 
02:14:44 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] master_test_jacocoArgLine set to -javaagent:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/../org.eclipse.scout.rt/target/jacoco-all.exec
02:14:44 [INFO] 
02:14:44 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:44 [INFO] skip non existing resourceDirectory /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/src/main/resources
02:14:44 [INFO] 
02:14:44 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] No sources to compile
02:14:44 [INFO] 
02:14:44 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:14:44 [INFO] Copying 13 resources
02:14:44 [INFO] 
02:14:44 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] Changes detected - recompiling the module!
02:14:44 [INFO] Compiling 25 source files to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/test-classes
02:14:44 [INFO] 
02:14:44 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [ERROR] [SKIP] Cannot process fileset in directory: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/classes. Directory does not exist!
02:14:44 [INFO] 
02:14:44 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:44 [INFO] Surefire report directory: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/surefire-reports
02:14:44 
02:14:44 -------------------------------------------------------
02:14:44  T E S T S
02:14:44 -------------------------------------------------------
02:14:44 Running org.eclipse.scout.rt.server.jdbc.BindValueTest
02:14:45 2021-04-28 06:14:45,033 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateHeadless(PlatformImplementor.java:173) - Headless mode: scout.headless=true, java.awt.headless=true, GraphicsEnvironment.isHeadless()=true - MDC[]
02:14:45 2021-04-28 06:14:45,062 INFO  [Thread-1] org.eclipse.scout.rt.platform.inventory.ClassInventory.<clinit>(ClassInventory.java:39) - Finished preparation of jandex class inventory in 22.363520 ms - MDC[]
02:14:45 2021-04-28 06:14:45,305 INFO  [Thread-1] org.eclipse.scout.rt.platform.logger.LoggerPlatformListener.registerLoggerSupportBean(LoggerPlatformListener.java:105) - registered logger support [org.eclipse.scout.rt.platform.logger.LogbackLoggerSupport] - MDC[]
02:14:45 2021-04-28 06:14:45,307 INFO  [Thread-1] org.eclipse.scout.rt.shared.services.common.code.CodeTypeRegistrator.stateChanged(CodeTypeRegistrator.java:32) - 0 code type classes registered. - MDC[]
02:14:45 2021-04-28 06:14:45,308 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateConfiguration(PlatformImplementor.java:185) - No config.properties found. Running with empty configuration. - MDC[]
02:14:45 2021-04-28 06:14:45,312 INFO  [Thread-1] org.eclipse.scout.rt.mom.api.AbstractMomTransport.initDelegate(AbstractMomTransport.java:76) - +++ Using 'NullMomImplementor' for transport 'ClusterMom'. No messages are published and received. - MDC[]
02:14:45 2021-04-28 06:14:45,361 INFO  [main] org.eclipse.scout.rt.server.AbstractServerSession.start(AbstractServerSession.java:218) - Server session started [session=org.eclipse.scout.rt.server.TestJdbcServerSession@4afd21c6[id = dabe72cd-d0b7-4598-9a63-d0941faddddf], user=default] - MDC[]
02:14:45 2021-04-28 06:14:45,405 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.<clinit>(StatementProcessor.java:80) - SQL Log 'INFO': statements are logged with bind details, but not as plaintext. Use level 'FINE' to also log SQL as plain text (suitable for direct use in executable form) - MDC[]
02:14:45 2021-04-28 06:14:45,426 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A
02:14:45 FROM      T
02:14:45 WHERE     A = :a
02:14:45 IN  :a => ? [BIGINT null] - MDC[]
02:14:45 2021-04-28 06:14:45,449 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A
02:14:45 FROM      T
02:14:45 WHERE     A = :a
02:14:45 IN  :a => ? [BIGINT null] - MDC[]
02:14:45 2021-04-28 06:14:45,453 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A
02:14:45 FROM      T
02:14:45 WHERE     A = :a
02:14:45 IN  :a => ? [NULL null] - MDC[]
02:14:45 Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.643 sec - in org.eclipse.scout.rt.server.jdbc.BindValueTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.SelectInputBindTest
02:14:45 2021-04-28 06:14:45,488 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
02:14:45 2021-04-28 06:14:45,488 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
02:14:45 2021-04-28 06:14:45,500 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,500 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,502 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
02:14:45 IN  :{filter.active} => ? [INTEGER 1]
02:14:45 IN  :{filter.state} => ? [INTEGER 3]
02:14:45 IN  :{filter.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,504 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
02:14:45 IN  :{filter.active} => ? [INTEGER 0]
02:14:45 IN  :{filter.state} => ? [INTEGER 6]
02:14:45 IN  :{filter.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,508 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,508 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,510 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
02:14:45 IN  :{table.active} => ? [INTEGER 1]
02:14:45 IN  :{table.state} => ? [INTEGER 3]
02:14:45 IN  :{table.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,511 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
02:14:45 IN  :{table.active} => ? [INTEGER 0]
02:14:45 IN  :{table.state} => ? [INTEGER 6]
02:14:45 IN  :{table.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,515 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,515 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,517 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,518 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,521 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,522 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,523 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
02:14:45 IN  :{active} => ? [INTEGER 1]
02:14:45 IN  :{state} => ? [INTEGER 3]
02:14:45 IN  :{name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,524 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
02:14:45 IN  :{active} => ? [INTEGER 0]
02:14:45 IN  :{state} => ? [INTEGER 6]
02:14:45 IN  :{name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,527 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,527 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,528 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,529 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,532 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,533 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,534 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
02:14:45 IN  :{active} => ? [INTEGER 1]
02:14:45 IN  :{state} => ? [INTEGER 3]
02:14:45 IN  :{name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,535 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
02:14:45 IN  :{active} => ? [INTEGER 0]
02:14:45 IN  :{state} => ? [INTEGER 6]
02:14:45 IN  :{name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,588 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,588 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,589 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
02:14:45 IN  :{filter.active} => ? [INTEGER 1]
02:14:45 IN  :{filter.state} => ? [INTEGER 3]
02:14:45 IN  :{filter.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,590 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
02:14:45 IN  :{filter.active} => ? [INTEGER 0]
02:14:45 IN  :{filter.state} => ? [INTEGER 6]
02:14:45 IN  :{filter.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,594 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,594 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,595 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{TableBeanHolderFilter.active} , S = :{TableBeanHolderFilter.state} WHERE N = :{TableBeanHolderFilter.name}
02:14:45 IN  :{TableBeanHolderFilter.active} => ? [INTEGER 1]
02:14:45 IN  :{TableBeanHolderFilter.state} => ? [INTEGER 3]
02:14:45 IN  :{TableBeanHolderFilter.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,596 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{TableBeanHolderFilter.active} , S = :{TableBeanHolderFilter.state} WHERE N = :{TableBeanHolderFilter.name}
02:14:45 IN  :{TableBeanHolderFilter.active} => ? [INTEGER 0]
02:14:45 IN  :{TableBeanHolderFilter.state} => ? [INTEGER 6]
02:14:45 IN  :{TableBeanHolderFilter.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,599 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,600 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,601 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{tableFieldBeanData.active} , S = :{tableFieldBeanData.state} WHERE N = :{tableFieldBeanData.name}
02:14:45 IN  :{tableFieldBeanData.active} => ? [INTEGER 1]
02:14:45 IN  :{tableFieldBeanData.state} => ? [INTEGER 3]
02:14:45 IN  :{tableFieldBeanData.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,601 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{tableFieldBeanData.active} , S = :{tableFieldBeanData.state} WHERE N = :{tableFieldBeanData.name}
02:14:45 IN  :{tableFieldBeanData.active} => ? [INTEGER 0]
02:14:45 IN  :{tableFieldBeanData.state} => ? [INTEGER 6]
02:14:45 IN  :{tableFieldBeanData.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,604 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,604 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,605 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,606 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,609 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,609 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,610 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,611 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,613 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
02:14:45 2021-04-28 06:14:45,614 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,615 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
02:14:45 IN  :{table.active} => ? [INTEGER 1]
02:14:45 IN  :{table.state} => ? [INTEGER 3]
02:14:45 IN  :{table.name} => ? [VARCHAR lorem] - MDC[]
02:14:45 2021-04-28 06:14:45,616 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
02:14:45 IN  :{table.active} => ? [INTEGER 0]
02:14:45 IN  :{table.state} => ? [INTEGER 6]
02:14:45 IN  :{table.name} => ? [VARCHAR ipsum] - MDC[]
02:14:45 2021-04-28 06:14:45,618 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,619 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,620 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,620 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,624 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,625 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,626 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,627 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,629 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 6 AND P = 9 - MDC[]
02:14:45 2021-04-28 06:14:45,629 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,630 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 6]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 2021-04-28 06:14:45,631 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 *** UNPARSED ***
02:14:45 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
02:14:45 IN  :value => ? [VARCHAR lorem]
02:14:45 IN  :{roles} => ? [BIGINT 5]
02:14:45 IN  :personNr => ? [BIGINT 9] - MDC[]
02:14:45 Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.177 sec - in org.eclipse.scout.rt.server.jdbc.SelectInputBindTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.SelectIntoArrayTest
02:14:45 2021-04-28 06:14:45,691 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,692 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,692 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :{h.active},
02:14:45           :{h.state},
02:14:45           :{h.name}
02:14:45 OUT :{h.active} => ? [Active]
02:14:45 OUT :{h.state} => ? [State]
02:14:45 OUT :{h.name} => ? [Name] - MDC[]
02:14:45 2021-04-28 06:14:45,698 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     A = :{h.active}
02:14:45           AND B = :{h.state}
02:14:45           AND C = :{h.name}
02:14:45 IN  :{h.active} => ? [INTEGER 1]
02:14:45 IN  :{h.state} => ? [INTEGER 1]
02:14:45 IN  :{h.name} => ? [VARCHAR abc] - MDC[]
02:14:45 2021-04-28 06:14:45,699 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     A = :{h.active}
02:14:45           AND B = :{h.state}
02:14:45           AND C = :{h.name}
02:14:45 IN  :{h.active} => ? [INTEGER null]
02:14:45 IN  :{h.state} => ? [INTEGER null]
02:14:45 IN  :{h.name} => ? [VARCHAR null] - MDC[]
02:14:45 2021-04-28 06:14:45,703 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = 42 - MDC[]
02:14:45 2021-04-28 06:14:45,703 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,704 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = :personNr
02:14:45 INTO      :{roles}
02:14:45 IN  :personNr => ? [BIGINT 42]
02:14:45 OUT :{roles} => ? - MDC[]
02:14:45 2021-04-28 06:14:45,707 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,707 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,708 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :{table.active},
02:14:45           :{table.state},
02:14:45           :{table.name}
02:14:45 OUT :{table.active} => ? [Boolean]
02:14:45 OUT :{table.state} => ? [Integer]
02:14:45 OUT :{table.name} => ? [String] - MDC[]
02:14:45 2021-04-28 06:14:45,711 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = 63 - MDC[]
02:14:45 2021-04-28 06:14:45,711 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,712 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = :personNr
02:14:45 INTO      :{roles}
02:14:45 IN  :personNr => ? [BIGINT 63]
02:14:45 OUT :{roles} => ? - MDC[]
02:14:45 2021-04-28 06:14:45,714 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,714 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,715 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :{table.active},
02:14:45           :{table.state},
02:14:45           :{table.name}
02:14:45 OUT :{table.active} => ? [Boolean]
02:14:45 OUT :{table.state} => ? [Integer]
02:14:45 OUT :{table.name} => ? [String] - MDC[]
02:14:45 2021-04-28 06:14:45,718 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = 42 - MDC[]
02:14:45 2021-04-28 06:14:45,718 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,719 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = :personNr
02:14:45 INTO      :{roles}
02:14:45 IN  :personNr => ? [BIGINT 42]
02:14:45 OUT :{roles} => ? [Long] - MDC[]
02:14:45 2021-04-28 06:14:45,721 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,721 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,722 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :{tableFieldBeanData.active},
02:14:45           :{tableFieldBeanData.state},
02:14:45           :{tableFieldBeanData.name}
02:14:45 OUT :{tableFieldBeanData.active} => ? [Boolean]
02:14:45 OUT :{tableFieldBeanData.state} => ? [Integer]
02:14:45 OUT :{tableFieldBeanData.name} => ? [String] - MDC[]
02:14:45 2021-04-28 06:14:45,725 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = 42 - MDC[]
02:14:45 2021-04-28 06:14:45,725 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,726 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    ROLE_NR
02:14:45 FROM      USER_ROLE
02:14:45 WHERE     USER_NR = :personNr
02:14:45 INTO      :{roles}
02:14:45 IN  :personNr => ? [BIGINT 42]
02:14:45 OUT :{roles} => ? - MDC[]
02:14:45 2021-04-28 06:14:45,728 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,728 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,729 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :{h.active},
02:14:45           :{h.state},
02:14:45           :{h.name}
02:14:45 OUT :{h.active} => ? [boolean]
02:14:45 OUT :{h.state} => ? [int]
02:14:45 OUT :{h.name} => ? [String] - MDC[]
02:14:45 2021-04-28 06:14:45,787 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,790 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0 - MDC[]
02:14:45 2021-04-28 06:14:45,790 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
02:14:45 2021-04-28 06:14:45,791 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:45 SQL with binds:
02:14:45 SELECT    A,
02:14:45           B,
02:14:45           C
02:14:45 FROM      T
02:14:45 WHERE     D = 0
02:14:45 INTO      :active,
02:14:45           :state,
02:14:45           :name
02:14:45 OUT :active => ? [Boolean]
02:14:45 OUT :state => ? [Integer]
02:14:45 OUT :name => ? [String] - MDC[]
02:14:45 Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.161 sec - in org.eclipse.scout.rt.server.jdbc.SelectIntoArrayTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.SelectIntoTest
02:14:45 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec - in org.eclipse.scout.rt.server.jdbc.SelectIntoTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.builder.EntityContributionUtilityTest
02:14:45 Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec - in org.eclipse.scout.rt.server.jdbc.builder.EntityContributionUtilityTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderTest
02:14:45 Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.071 sec - in org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderWithComposerTest
02:14:45 Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec - in org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderWithComposerTest
02:14:45 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorCreateSqlDumpTest
02:14:46 Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.185 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorCreateSqlDumpTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorFindNextBindTest
02:14:46 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorFindNextBindTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorTest
02:14:46 2021-04-28 06:14:46,106 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    :bind1,
02:14:46           :bind2
02:14:46 FROM      DUAL
02:14:46 IN  :bind1 => ? [NULL null]
02:14:46 IN  :bind2 => ? [NULL null] - MDC[]
02:14:46 2021-04-28 06:14:46,108 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    :bind1,
02:14:46           :bind2
02:14:46 FROM      DUAL
02:14:46 IN  :bind1 => ? [NULL null]
02:14:46 IN  :bind2 => ? [NULL null] - MDC[]
02:14:46 2021-04-28 06:14:46,110 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    1,
02:14:46           2
02:14:46 FROM      DUAL
02:14:46 INTO      :bind1,
02:14:46           :bind2
02:14:46 OUT :bind1 => ? [Integer]
02:14:46 OUT :bind2 => ? [Integer] - MDC[]
02:14:46 2021-04-28 06:14:46,111 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    1,
02:14:46           2
02:14:46 FROM      DUAL
02:14:46 INTO      :bind1,
02:14:46           :bind2
02:14:46 OUT :bind1 => ? [Integer]
02:14:46 OUT :bind2 => ? [Integer] - MDC[]
02:14:46 2021-04-28 06:14:46,112 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    :userId,
02:14:46           :bind1
02:14:46 FROM      DUAL
02:14:46 IN  :userId => ? [NULL null]
02:14:46 IN  :bind1 => ? [NULL null] - MDC[]
02:14:46 2021-04-28 06:14:46,113 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    :bind1,
02:14:46           :bind2
02:14:46 FROM      DUAL
02:14:46 IN  :bind1 => ? [NULL null]
02:14:46 IN  :bind2 => ? [NULL null] - MDC[]
02:14:46 2021-04-28 06:14:46,114 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    1,
02:14:46           2
02:14:46 FROM      DUAL
02:14:46 INTO      :bind1,
02:14:46           :bind2
02:14:46 OUT :bind1 => ? [Integer]
02:14:46 OUT :bind2 => ? [Integer] - MDC[]
02:14:46 2021-04-28 06:14:46,120 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
02:14:46 2021-04-28 06:14:46,120 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
02:14:46 2021-04-28 06:14:46,122 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    P.PERSON_NR,
02:14:46           P.NAME
02:14:46 FROM      PERSON P
02:14:46 WHERE     P.PERSON_NR = :key
02:14:46           AND P.NAME LIKE '%' || :text || '%'
02:14:46 IN  :key => ? [VARCHAR null]
02:14:46 IN  :text => ? [VARCHAR null] - MDC[]
02:14:46 2021-04-28 06:14:46,127 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
02:14:46 2021-04-28 06:14:46,127 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
02:14:46 2021-04-28 06:14:46,129 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    COUNT(*)
02:14:46 FROM      PERSON P
02:14:46 WHERE     NVL(:birthdate, TO_DATE('1.1.3000', 'dd.mm.yyyy')) >= SYSDATE
02:14:46           AND :name LIKE '%Me%'
02:14:46           AND :{addressTable.street} LIKE '%Park%'
02:14:46 INTO      :countConcurrent
02:14:46 IN  :birthdate => ? [TIMESTAMP null]
02:14:46 IN  :name => ? [VARCHAR null]
02:14:46 IN  :{addressTable.street} => ? [VARCHAR null]
02:14:46 OUT :countConcurrent => ? [Integer] - MDC[]
02:14:46 2021-04-28 06:14:46,131 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    COUNT(*)
02:14:46 FROM      PERSON P
02:14:46 WHERE     NVL(:birthdate, TO_DATE('1.1.3000', 'dd.mm.yyyy')) >= SYSDATE
02:14:46           AND :name LIKE '%Me%'
02:14:46           AND :{addressTable.street} LIKE '%Park%'
02:14:46 INTO      :countConcurrent
02:14:46 IN  :birthdate => ? [TIMESTAMP null]
02:14:46 IN  :name => ? [VARCHAR null]
02:14:46 IN  :{addressTable.street} => ? [VARCHAR null]
02:14:46 OUT :countConcurrent => ? [Integer] - MDC[]
02:14:46 2021-04-28 06:14:46,134 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
02:14:46 2021-04-28 06:14:46,134 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
02:14:46 2021-04-28 06:14:46,135 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    BP_NR
02:14:46 FROM      FLM_BP
02:14:46 WHERE     BP_NO LIKE :bpNo
02:14:46 INTO      :bpNr
02:14:46 IN  :bpNo => ? [VARCHAR 12]
02:14:46 OUT :bpNr => ? [Long] - MDC[]
02:14:46 2021-04-28 06:14:46,137 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
02:14:46 2021-04-28 06:14:46,137 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
02:14:46 2021-04-28 06:14:46,138 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
02:14:46 SQL with binds:
02:14:46 SELECT    1
02:14:46 FROM      DUAL
02:14:46 INTO      :active
02:14:46 OUT :active => ? [Integer] - MDC[]
02:14:46 Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.parsers.BindParserTest
02:14:46 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in org.eclipse.scout.rt.server.jdbc.parsers.BindParserTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.parsers.SqlFunctionReplaceTest
02:14:46 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in org.eclipse.scout.rt.server.jdbc.parsers.SqlFunctionReplaceTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlFormatterTest
02:14:46 Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.067 sec - in org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlFormatterTest
02:14:46 Running org.eclipse.scout.rt.server.jdbc.style.AbstractSqlStyleTest
02:14:46 Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec - in org.eclipse.scout.rt.server.jdbc.style.AbstractSqlStyleTest
02:14:46 
02:14:46 Results :
02:14:46 
02:14:46 Tests run: 95, Failures: 0, Errors: 0, Skipped: 0
02:14:46 
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [WARNING] JAR will be empty - no content was marked for inclusion!
02:14:46 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT.jar
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-tests.jar
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] No sources in project. Archive not created.
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-test-sources.jar
02:14:46 [INFO] 
02:14:46 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] Skipping duplicate-finder execution!
02:14:46 [INFO] 
02:14:46 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] Signature checking is skipped.
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.server.jdbc.test ---
02:14:46 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jdbc.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT.jar
02:14:46 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/pom.xml to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jdbc.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT.pom
02:14:46 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-tests.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jdbc.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-tests.jar
02:14:46 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jdbc.test/target/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-test-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jdbc.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jdbc.test-6.1.0-SNAPSHOT-test-sources.jar
02:14:46 [INFO] 
02:14:46 [INFO] ----< org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test >-----
02:14:46 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test 6.1.0-SNAPSHOT [35/35]
02:14:46 [INFO] --------------------------------[ jar ]---------------------------------
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.server.jaxws.test ---
02:14:46 [INFO] 
02:14:46 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.server.jaxws.test ---
02:14:46 [INFO] Skipping Rule Enforcement.
02:14:46 [INFO] 
02:14:46 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.server.jaxws.test ---
02:14:48 [INFO] 
02:14:48 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.server.jaxws.test ---
02:14:48 [INFO] master_test_jacocoArgLine set to -javaagent:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/jacoco/org.jacoco.agent/0.7.5.201505241946/org.jacoco.agent-0.7.5.201505241946-runtime.jar=destfile=/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/../org.eclipse.scout.rt/target/jacoco-all.exec
02:14:48 [INFO] 
02:14:48 [INFO] --- jaxws-maven-plugin:2.4:wsimport (wsimport-1) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:05 [INFO] Processing: file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/wsdl/JaxWsConsumerTestService.wsdl
02:15:05 [INFO] jaxws:wsimport args: [-keep, -s, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/wsimport', -d, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/wsimport', -verbose, -encoding, UTF-8, -Xnocompile, -wsdllocation, WEB-INF/wsdl/JaxWsConsumerTestService.wsdl, -Xdebug, -XdisableSSLHostnameVerification, -XdisableAuthenticator, -b, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/binding/global-binding.xml', "file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/wsdl/JaxWsConsumerTestService.wsdl"]
02:15:05 parsing WSDL...
02:15:05 
02:15:05 
02:15:05 
02:15:05 Generating code...
02:15:05 
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/EchoRequest.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/EchoResponse.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/GetHeaderRequest.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/GetHeaderResponse.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/JaxWsConsumerTestService.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/JaxWsConsumerTestServicePortType.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/ObjectFactory.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SetHeaderRequest.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SetHeaderResponse.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SleepRequest.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SleepResponse.java
02:15:05 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/package-info.java
02:15:05 [INFO] 
02:15:05 [INFO] --- jaxws-maven-plugin:2.4:wsimport (wsimport-2) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:05 [INFO] Processing: file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/wsdl/JaxWsPingTestService.wsdl
02:15:05 [INFO] jaxws:wsimport args: [-keep, -s, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/wsimport', -d, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/wsimport', -verbose, -encoding, UTF-8, -Xnocompile, -wsdllocation, WEB-INF/wsdl/JaxWsPingTestService.wsdl, -Xdebug, -XdisableSSLHostnameVerification, -XdisableAuthenticator, -b, '/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/binding/global-binding.xml', "file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/src/main/resources/WEB-INF/wsdl/JaxWsPingTestService.wsdl"]
02:15:06 parsing WSDL...
02:15:06 
02:15:06 
02:15:06 
02:15:06 Generating code...
02:15:06 
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/JaxWsPingTestService.java
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/JaxWsPingTestServicePortType.java
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/ObjectFactory.java
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/PingRequest.java
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/PingResponse.java
02:15:06 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/package-info.java
02:15:06 [INFO] 
02:15:06 [INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-wsimport-source) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:06 [INFO] Source directory: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/wsimport added.
02:15:06 [INFO] 
02:15:06 [INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-apt-source) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:06 [INFO] Source directory: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/generated-sources/annotations added.
02:15:06 [INFO] 
02:15:06 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-wsimport-artifacts) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:06 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:15:06 [INFO] Copying 0 resource
02:15:06 [INFO] 
02:15:06 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:06 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:15:06 [INFO] Copying 3 resources
02:15:06 [INFO] 
02:15:06 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-jaxws-artifacts-to-meta-inf) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:06 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:15:06 [INFO] Copying 2 resources
02:15:06 [INFO] 
02:15:06 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] Changes detected - recompiling the module!
02:15:07 [INFO] Compiling 25 source files to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/classes
02:15:07 [INFO] Annotation processing: Annotation processing started... [processor=JaxWsAnnotationProcessor]
02:15:07 [INFO] Annotation processing: Skipped entry point generation for endpoint interface 'org.eclipse.scout.jaxws.consumer.jaxwsconsumertestservice.JaxWsConsumerTestServicePortType' because not configured with WebServiceEntryPoint annotation. [processor=JaxWsAnnotationProcessor]
02:15:07 [INFO] Annotation processing: Skipped entry point generation for endpoint interface 'org.eclipse.scout.jaxws.consumer.jaxwspingtestservice.JaxWsPingTestServicePortType' because not configured with WebServiceEntryPoint annotation. [processor=JaxWsAnnotationProcessor]
02:15:07 [INFO] Annotation processing: Annotation processing started... [processor=JaxWsAnnotationProcessor]
02:15:07 [INFO] 
02:15:07 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-apt-artifacts) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:15:07 [INFO] Copying 0 resource
02:15:07 [INFO] 
02:15:07 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] Using 'UTF-8' encoding to copy filtered resources.
02:15:07 [INFO] Copying 2 resources
02:15:07 [INFO] 
02:15:07 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] Changes detected - recompiling the module!
02:15:07 [INFO] Compiling 10 source files to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/test-classes
02:15:07 [INFO] 
02:15:07 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] 
02:15:07 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:07 [INFO] Surefire report directory: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/surefire-reports
02:15:07 
02:15:07 -------------------------------------------------------
02:15:07  T E S T S
02:15:07 -------------------------------------------------------
02:15:08 Running org.eclipse.scout.rt.server.jaxws.adapter.CalendarDateTimeAdapterTest
02:15:08 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.203 sec - in org.eclipse.scout.rt.server.jaxws.adapter.CalendarDateTimeAdapterTest
02:15:08 Running org.eclipse.scout.rt.server.jaxws.adapter.DefaultTimezoneDateTimeAdapterTest
02:15:08 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in org.eclipse.scout.rt.server.jaxws.adapter.DefaultTimezoneDateTimeAdapterTest
02:15:08 Running org.eclipse.scout.rt.server.jaxws.adapter.UtcDateTimeAdapterTest
02:15:08 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec - in org.eclipse.scout.rt.server.jaxws.adapter.UtcDateTimeAdapterTest
02:15:08 Running org.eclipse.scout.rt.server.jaxws.consumer.InvocationContextTest
02:15:08 2021-04-28 07:15:08,599 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateHeadless(PlatformImplementor.java:173) - Headless mode: scout.headless=true, java.awt.headless=true, GraphicsEnvironment.isHeadless()=true - MDC[]
02:15:08 2021-04-28 07:15:08,629 INFO  [Thread-1] org.eclipse.scout.rt.platform.inventory.ClassInventory.<clinit>(ClassInventory.java:39) - Finished preparation of jandex class inventory in 23.251734 ms - MDC[]
02:15:08 2021-04-28 07:15:08,893 INFO  [Thread-1] org.eclipse.scout.rt.platform.logger.LoggerPlatformListener.registerLoggerSupportBean(LoggerPlatformListener.java:105) - registered logger support [org.eclipse.scout.rt.platform.logger.LogbackLoggerSupport] - MDC[]
02:15:08 2021-04-28 07:15:08,895 INFO  [Thread-1] org.eclipse.scout.rt.server.jaxws.JaxWsPlatformListener.installImplementorSpecifics(JaxWsPlatformListener.java:65) - JAX-WS implementor specific class installed: org.eclipse.scout.rt.server.jaxws.implementor.JaxWsRISpecifics - MDC[]
02:15:08 2021-04-28 07:15:08,896 INFO  [Thread-1] org.eclipse.scout.rt.shared.services.common.code.CodeTypeRegistrator.stateChanged(CodeTypeRegistrator.java:32) - 0 code type classes registered. - MDC[]
02:15:08 2021-04-28 07:15:08,897 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateConfiguration(PlatformImplementor.java:185) - No config.properties found. Running with empty configuration. - MDC[]
02:15:08 2021-04-28 07:15:08,934 INFO  [Thread-1] org.eclipse.scout.rt.server.jaxws.JaxWsPlatformListener.logImplementorInfo(JaxWsPlatformListener.java:73) - JAX-WS implementor: JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e (http://jax-ws.java.net, Oracle Corporation, bundled with JRE) - MDC[]
02:15:08 2021-04-28 07:15:08,938 INFO  [Thread-1] org.eclipse.scout.rt.mom.api.AbstractMomTransport.initDelegate(AbstractMomTransport.java:76) - +++ Using 'NullMomImplementor' for transport 'ClusterMom'. No messages are published and received. - MDC[]
02:15:09 2021-04-28 07:15:09,011 INFO  [main] org.eclipse.scout.rt.server.AbstractServerSession.start(AbstractServerSession.java:218) - Server session started [session=org.eclipse.scout.rt.server.jaxws.JaxWsTestServerSession@1f966492[id = 8bd0a7e7-08a3-4b4b-b912-555dc3f0d364], user=jaxws-user] - MDC[]
02:15:09 Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.755 sec - in org.eclipse.scout.rt.server.jaxws.consumer.InvocationContextTest
02:15:09 Running org.eclipse.scout.rt.server.jaxws.consumer.JaxWsRiClientTest
02:15:09 2021-04-28 07:15:09,291 INFO  [main] org.eclipse.scout.rt.server.AbstractServerSession.start(AbstractServerSession.java:218) - Server session started [session=org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServerSession@35adf623[id = 8641ef7c-110c-4097-b522-7458eb4cb981], user=default] - MDC[]
02:15:09 2021-04-28 07:15:09,570 INFO  [main] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsTestProviderInstaller.install(JaxWsTestProviderInstaller.java:47) - Published JaxWsConsumerTestServiceProvider on endpoint http://localhost:39197/WS/JaxWsConsumerTestService - MDC[]
02:15:09 2021-04-28 07:15:09,598 INFO  [main] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsTestProviderInstaller.install(JaxWsTestProviderInstaller.java:49) - Published JaxWsPingTestServiceProvider on endpoint http://localhost:39197/WS/JaxWsPingTestService - MDC[]
02:15:09 2021-04-28 07:15:09,652 INFO  [pool-1-thread-1] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message' - MDC[]
02:15:09 2021-04-28 07:15:09,660 INFO  [pool-1-thread-1] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:10 2021-04-28 07:15:10,206 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:10 2021-04-28 07:15:10,211 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='test header value', headerSet=true] - MDC[]
02:15:10 2021-04-28 07:15:10,254 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='null', headerSet=false] - MDC[]
02:15:10 2021-04-28 07:15:10,299 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:10 2021-04-28 07:15:10,343 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.setHeader(JaxWsConsumerTestServiceProvider.java:113) - set header ['X-Scout-JaxWsTestHeader'='test header value'] - MDC[]
02:15:10 2021-04-28 07:15:10,387 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:10 2021-04-28 07:15:10,432 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='null', headerSet=false] - MDC[]
02:15:10 2021-04-28 07:15:10,475 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='test header value', headerSet=true] - MDC[]
02:15:10 2021-04-28 07:15:10,517 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='test header value', headerSet=true] - MDC[]
02:15:10 2021-04-28 07:15:10,559 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='null', headerSet=false] - MDC[]
02:15:10 2021-04-28 07:15:10,603 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:10 2021-04-28 07:15:10,645 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
02:15:10 2021-04-28 07:15:10,688 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 2' - MDC[]
02:15:10 2021-04-28 07:15:10,730 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 3' - MDC[]
02:15:10 2021-04-28 07:15:10,773 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 4' - MDC[]
02:15:10 2021-04-28 07:15:10,815 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 5' - MDC[]
02:15:10 2021-04-28 07:15:10,858 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 6' - MDC[]
02:15:10 2021-04-28 07:15:10,901 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 7' - MDC[]
02:15:10 2021-04-28 07:15:10,942 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 8' - MDC[]
02:15:10 2021-04-28 07:15:10,985 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 9' - MDC[]
02:15:11 2021-04-28 07:15:11,028 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='null', headerSet=false] - MDC[]
02:15:11 2021-04-28 07:15:11,082 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:11 2021-04-28 07:15:11,126 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:11 2021-04-28 07:15:11,170 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:11 2021-04-28 07:15:11,221 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsPingTestServiceProvider.ping(JaxWsPingTestServiceProvider.java:30) - echo 'ping' - MDC[]
02:15:11 2021-04-28 07:15:11,264 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:11 2021-04-28 07:15:11,307 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
02:15:11 2021-04-28 07:15:11,895 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.setHeader(JaxWsConsumerTestServiceProvider.java:113) - set header ['X-Scout-JaxWsTestHeader'='test header value'] - MDC[]
02:15:12 2021-04-28 07:15:12,442 INFO  [pool-1-thread-3] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:12 2021-04-28 07:15:12,447 INFO  [pool-1-thread-3] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.setHeader(JaxWsConsumerTestServiceProvider.java:113) - set header ['X-Scout-JaxWsTestHeader'='test header value'] - MDC[]
02:15:12 2021-04-28 07:15:12,492 INFO  [pool-1-thread-3] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.getHeader(JaxWsConsumerTestServiceProvider.java:104) - get header ['X-Scout-JaxWsTestHeader'='test header value', headerSet=true] - MDC[]
02:15:12 2021-04-28 07:15:12,605 INFO  [pool-1-thread-4] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:12 2021-04-28 07:15:12,610 INFO  [pool-1-thread-4] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.setHeader(JaxWsConsumerTestServiceProvider.java:113) - set header ['X-Scout-JaxWsTestHeader'='test header value'] - MDC[]
02:15:13 2021-04-28 07:15:13,156 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
02:15:13 2021-04-28 07:15:13,163 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:13 2021-04-28 07:15:13,212 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
02:15:13 2021-04-28 07:15:13,255 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
02:15:13 2021-04-28 07:15:13,256 INFO  [pool-1-thread-6] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
02:15:14 Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.014 sec - in org.eclipse.scout.rt.server.jaxws.consumer.JaxWsRiClientTest
02:15:14 Running org.eclipse.scout.rt.server.jaxws.consumer.PortCacheTest
02:15:14 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.065 sec - in org.eclipse.scout.rt.server.jaxws.consumer.PortCacheTest
02:15:14 Running org.eclipse.scout.rt.server.jaxws.handler.WsConsumerCorrelationIdHandlerTest
02:15:14 Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec - in org.eclipse.scout.rt.server.jaxws.handler.WsConsumerCorrelationIdHandlerTest
02:15:14 Running org.eclipse.scout.rt.server.jaxws.handler.WsProviderCorrelationIdHandlerTest
02:15:14 Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec - in org.eclipse.scout.rt.server.jaxws.handler.WsProviderCorrelationIdHandlerTest
02:15:14 
02:15:14 Results :
02:15:14 
02:15:14 Tests run: 39, Failures: 0, Errors: 0, Skipped: 0
02:15:14 
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT.jar
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-tests.jar
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-sources.jar
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Building jar: /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-test-sources.jar
02:15:14 [INFO] 
02:15:14 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Skipping duplicate-finder execution!
02:15:14 [INFO] 
02:15:14 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Signature checking is skipped.
02:15:14 [INFO] 
02:15:14 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.server.jaxws.test ---
02:15:14 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jaxws.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT.jar
02:15:14 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/pom.xml to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jaxws.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT.pom
02:15:14 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-tests.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jaxws.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-tests.jar
02:15:14 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jaxws.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-sources.jar
02:15:14 [INFO] Installing /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/org.eclipse.scout.rt.server.jaxws.test/target/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-test-sources.jar to /home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/.repository/org/eclipse/scout/rt/org.eclipse.scout.rt.server.jaxws.test/6.1.0-SNAPSHOT/org.eclipse.scout.rt.server.jaxws.test-6.1.0-SNAPSHOT-test-sources.jar
02:15:14 [INFO] ------------------------------------------------------------------------
02:15:14 [INFO] Reactor Summary for Eclipse Scout RT 6.1.0-SNAPSHOT:
02:15:14 [INFO] 
02:15:14 [INFO] Eclipse Scout RT ................................... SUCCESS [02:21 min]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.json ........ SUCCESS [ 14.397 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.platform . SUCCESS [  9.431 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.platform.test SUCCESS [02:03 min]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.shared ... SUCCESS [  2.255 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.shared.test SUCCESS [  3.425 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.commons SUCCESS [  1.117 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.commons.test SUCCESS [  6.232 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.api .. SUCCESS [  1.891 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server ... SUCCESS [  1.165 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.test SUCCESS [  7.704 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jms SUCCESS [  0.959 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws SUCCESS [  1.951 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt ... SUCCESS [  1.263 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test SUCCESS [ 28.116 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc SUCCESS [  1.109 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test SUCCESS [  3.118 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.api.test SUCCESS [  2.635 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.jms .. SUCCESS [  1.448 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.jms.test SUCCESS [02:41 min]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.client ... SUCCESS [  3.295 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.client.test SUCCESS [ 22.179 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.client SUCCESS [  3.586 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.client.test SUCCESS [  1.840 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.serverbridge SUCCESS [  0.947 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.scriptprocessor SUCCESS [ 12.139 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html .. SUCCESS [  4.459 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.test SUCCESS [01:35 min]
02:15:14 [INFO] org.eclipse.scout.rt.ui.html.selenium .............. SUCCESS [  9.419 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.scriptprocessor.test SUCCESS [  2.206 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html SUCCESS [  1.050 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty ... SUCCESS [  3.517 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty.test.affix SUCCESS [  0.951 s]
02:15:14 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty.test SUCCESS [  1.506 s]
02:15:14 [INFO] org.eclipse.scout.rt-settings ...................... SUCCESS [  0.944 s]
02:15:14 [INFO] ------------------------------------------------------------------------
02:15:14 [INFO] BUILD SUCCESS
02:15:14 [INFO] ------------------------------------------------------------------------
02:15:14 [INFO] Total time:  11:19 min
02:15:14 [INFO] Finished at: 2021-04-28T06:15:14Z
02:15:14 [INFO] ------------------------------------------------------------------------
02:15:15 Recording test results
02:15:16 [Checks API] No suitable checks publisher found.
02:15:16 Finished: SUCCESS