Skip to content

Console Output

Skipping 6,279 KB.. Full Log
      draws scale for WORK_WEEK with only showing every second label
08:14:19     displayMode: MONTH
08:14:19       draws scale
08:14:19       draws scale with only showing every second label
08:14:19     displayMode: CALENDAR_WEEK
08:14:19       draws scale for CALENDAR_WEEK displayMode
08:14:19       draws scale with only showing every second label
08:14:19       draws scale with only showing every third label
08:14:19     displayMode: YEAR
08:14:19       draws scale for YEAR displayMode
08:14:19       draws scale with only showing every second label
08:14:19       draws scale with only showing every third label
08:14:19   transformLeft/transformWidth
08:14:19     calculates left and width in WEEK mode for whole days
08:14:19     calculates left and width in WEEK mode for limitted day range
08:14:19     calculates left and width in WEEK mode for limitted day range (only firstHourOfDay set)
08:14:19   select
08:14:19     selects at least the number of intervals configured by display mode options
08:14:19     respects end of day if minSelectionIntervalCount is set
08:14:19 
08:14:19 scrollbars
08:14:19   onScroll
08:14:19     attaches handler to scrolling parents which execute when scrolling
08:14:19   offScroll
08:14:19     detaches handler from scrolling parents
08:14:19   isLocationInView
08:14:19     returns true if the given location is inside the given $scrollable
08:14:19     returns false if x of the given location is outside of the given $scrollable (smaller)
08:14:19     returns false if y of the given location is outside of the given $scrollable (smaller)
08:14:19     returns false if x of the given location is outside of the given $scrollable (greater)
08:14:19     returns false if y of the given location is outside of the given $scrollable (greater)
08:14:19   render
08:14:19     ensures parent has position absolute or relative
08:14:19 
08:14:19 BusyIndicator
08:14:19   render
08:14:19     uses entry point as parent if no $parent is provided
08:14:19     uses $parent as parent if provided
08:14:19 
08:14:19 ModelAdapter
08:14:19   can handle properties in any order
08:14:19   _syncPropertiesOnPropertyChange calls set* methods or setProperty method
08:14:19   init
08:14:19     copies properties to widget
08:14:19     sets default values
08:14:19   destroy
08:14:19     destroys the adapter and its children
08:14:19     does not destroy children, which are globally used
08:14:19   onModelPropertyChange
08:14:19     adapter
08:14:19       creates and registers the new adapter
08:14:19       destroys the old adapter
08:14:19     filters
08:14:19       propertyChange events
08:14:19         should send event when property change is triggered by widget
08:14:19         should not send event when property is triggered by server
08:14:19       widget events
08:14:19         should handle widget event when it is not filtered
08:14:19         should not handle widget event when it is filtered
08:14:19     export adapter
08:14:19       exportAdapterData should export last part of model-class as ID
08:14:19     adapters
08:14:19       creates and registers adapters
08:14:19       destroys the old adapters
08:14:19       destroys the old and creates the new adapters if the array contains both
08:14:19 
08:14:19 ResponseQueue
08:14:19   add
08:14:19     adds elements to the queue in the correct order
08:14:19     removes elements that are superseded by combined response
08:14:19   process
08:14:19     processes elements in the correct order
08:14:19     does not process elements in the wrong order
08:14:19     does not process same response twice
08:14:19 
08:14:19 Session
08:14:19   send
08:14:19     sends multiple async events in one call
08:14:19     sends multiple async events in one call over multiple user interactions if sending was delayed
08:14:19     does not await the full delay if a susequent send call has a smaller delay
08:14:19     does not await the full delay if a previous send call has a smaller delay
08:14:19     coalesces events if event provides a coalesce function
08:14:19     sends requests consecutively
08:14:19     sends requests consecutively and respects delay
08:14:19     queues ?poll results when user requests are pending
08:14:19     resumes polling after successful responses
08:14:19     does not resume polling after JS errors
08:14:19     does not resume polling after UI server errors
08:14:19     does not resume polling after HTTP errors
08:14:19     does not resume polling after session terminated
08:14:19   init
08:14:19     sends startup parameter
08:14:19     sends user agent on startup
08:14:19   texts
08:14:19     check if correct text is returned
08:14:19     check if empty text is returned
08:14:19     check if null text is returned
08:14:19     check if arguments are replaced in text
08:14:19     check if multiple arguments are replaced in text
08:14:19     check if undefined texts return an error message
08:14:19     optText returns undefined if key is not found
08:14:19     optText returns default value if key is not found
08:14:19     optText returns text if key found
08:14:19     optText returns text if key found, with arguments
08:14:19 
08:14:19 Splitter
08:14:19   renders the splitter at the given position
08:14:19 
08:14:19 SimpleTabArea
08:14:19   renders the tabs in the correct order
08:14:19 
08:14:19 TableAdapter
08:14:19   selectRows
08:14:19     sends rowsSelected event containing rowIds
08:14:19     does not send selection event if triggered by server
08:14:19   checkRows
08:14:19     sends rowsChecked event containing rowIds
08:14:19     does not send rowsChecked event if triggered by server
08:14:19   onModelAction
08:14:19     rowsSelected event
08:14:19       calls selectRows
08:14:19     rowsDeleted event
08:14:19       calls deleteRows
08:14:19       does not send rowsSelected event for the deleted rows
08:14:19     allRowsDeleted event
08:14:19       calls deleteAllRows
08:14:19       does not send rowsSelected event
08:14:19     rowsInserted event
08:14:19       calls insertRows
08:14:19       may contain cells as objects
08:14:19       may contain cells as scalars
08:14:19       respects null values
08:14:19       uses text as value if value is not provided
08:14:19     rowOrderChanged event
08:14:19       calls updateRowOrder
08:14:19       does not animate ordering for newly inserted rows
08:14:19     rowsUpdated event
08:14:19       calls updateRows
08:14:19     columnStructureChanged event
08:14:19       calls updateColumnStructure
08:14:19     columnOrderChanged event
08:14:19       calls updateColumnOrder
08:14:19     columnHeadersUpdated event
08:14:19       calls updateColumnHeaders
08:14:19   onModelPropertyChange
08:14:19     menus
08:14:19       creates and registers menu adapters
08:14:19       destroys the old menus
08:14:19       destroys the old and creates the new menus if the list contains both
08:14:19   _sendRowsFiltered
08:14:19     should not coalesce remove and 'add' events
08:14:19 
08:14:19 Table Filter
08:14:19   row filtering
08:14:19     applies row filter when table gets initialized
08:14:19     doesn't filter anymore if filter gets removed
08:14:19     applies row filter if a new row gets inserted
08:14:19     applies row filter if a new row gets inserted, even if table is not rendered
08:14:19     applies row filter if a row gets updated
08:14:19     applies row filter if a row gets updated, even if table is not rendered
08:14:19     properly handles successive row insertion and updates
08:14:19     properly handles reset table case
08:14:19     considers view range
08:14:19     renders empty data if all rows are removed due to filtering
08:14:19   selection
08:14:19     gets removed for non visible rows after filtering
08:14:19     stays removed even if filtered row is selected explicitly
08:14:19     gets removed for non visible rows after filtering if a row has been updated
08:14:19     gets restored for visible rows after filtering
08:14:19   events
08:14:19     rowsFiltered
08:14:19       gets fired when table with a filter is initializing
08:14:19       does not get fired when table with no filters is initializing
08:14:19       gets fired if filter() is called
08:14:19       gets fired if filter() is called, even if table is not rendered
08:14:19       gets not fired if rows are filtered again but the filtered rows have not changed
08:14:19       gets fired if rows are filtered during updateRows
08:14:19       gets fired if rows are filtered during insertRows
08:14:19       gets fired if rows are filtered during deleteRows
08:14:19       gets fired if rows are filtered during deleteAllRows
08:14:19       does not get fired if rows are updated but row filter state has not changed
08:14:19       gets sent to server containing rowIds when rows are filtered
08:14:19 
08:14:19 TableFooterSpec
08:14:19   render
08:14:19     attaches listener to the table but only once
08:14:19   remove
08:14:19     stops the open animation of the selected control
08:14:19     stops the close animation of the selected control
08:14:19   controls
08:14:19     removes old and renders new controls on property change
08:14:19   TableStatusTooltip
08:14:19     shows ERROR tooltip
08:14:19     shows INFO tooltip when table is rendered
08:14:19     hides INFO tooltip when user clicks in table
08:14:19     does not hide ERROR tooltip when user clicks in table
08:14:19 
08:14:19 TableHeaderMenu
08:14:19   filter
08:14:19     string column
08:14:19       shows the unique string values
08:14:19       converts multiline text to single line
08:14:19       strips html tags if html is enabled
08:14:19       reflects the state of the filter
08:14:19       correctly updates the list after inserting a new row, if a filter is applied
08:14:19       always displays the selected value, even if the table does not contain the value anymore
08:14:19       displays empty values as -empty-
08:14:19       stores selected text in filter.selectedValues
08:14:19       stores empty as null and not '-empty-'
08:14:19     grouping / sorting
08:14:19       count sorted columns
08:14:19       count grouped columns
08:14:19     boolean column
08:14:19       shows the unique string values
08:14:19     sort enabled
08:14:19       option enabled shows sort options in table header menu
08:14:19       option disabled does not show sort options in table header menu
08:14:19 
08:14:19 TableHeaderSpec
08:14:19   render
08:14:19     attaches listener to the table but only once
08:14:19 
08:14:19 TableKeyStrokes
08:14:19   key up
08:14:19     selects the above row
08:14:19     selects the last row if no row is selected yet
08:14:19     selects the second last row if all rows are selected
08:14:19     selects the only row if there is only one
08:14:19     does nothing if first row already is selected
08:14:19     if first row already is selected but is not the last action row, the row above the last action row gets selected
08:14:19     if there is a last action row, selects the row above last last action row
08:14:19     selects the row above the last action row even if the row above already is selected
08:14:19     uses last row of selection as last action row if last action row is not visible anymore
08:14:19      + shift
08:14:19       adds the row above to the selection
08:14:19       removes the row above from the selection if the last action row is the last row of the selection
08:14:19       if the row above the last action row is not selected, adds the row above to the selection
08:14:19   key down
08:14:19     selects the row below
08:14:19     selects the first row if no row is selected yet
08:14:19     selects the second row if all rows are selected
08:14:19     selects the only row if there is only one
08:14:19     does nothing if last row already is selected
08:14:19     if there is a last action row, selects the row below the last action row
08:14:19     selects the row below the last action row even if the row below already is selected
08:14:19     uses last row of selection as last action row if last action row is not visible anymore
08:14:19      + shift
08:14:19       adds the row below to the selection
08:14:19       removes the row below from the selection if the last action row is the first row of the selection
08:14:19       if the row below the last action row is not selected, adds the row below to the selection
08:14:19   end
08:14:19     selects last row
08:14:19      + shift
08:14:19       selects all rows from currently selected row to last row
08:14:19       preserves existing selection
08:14:19       considers last action row as start row for new selection
08:14:19       uses last row of selection as last action row if last action row is not visible anymore
08:14:19       does nothing if last row is already selected
08:14:19       does not add same rows to selectedRows twice
08:14:19   home
08:14:19     selects first row
08:14:19      + shift
08:14:19       selects all rows from currently selected row to first row
08:14:19       preserves existing selection
08:14:19       considers last action row as start row for new selection
08:14:19       uses first row of selection as last action row if last action row is not visible anymore
08:14:19       does nothing if first row is already selected
08:14:19       does not add same rows to selectedRows twice
08:14:19   space
08:14:19     does nothing if no rows are selected
08:14:19     checks the selected rows if first row is unchecked
08:14:19     does not modify already checked rows when checking
08:14:19     unchecks the selected rows if first row is checked
08:14:19   page up
08:14:19     selects the only row if there is only one
08:14:19   page down
08:14:19     selects the only row if there is only one
08:14:19 
08:14:19 Table
08:14:19   render
08:14:19     renders CSS class
08:14:19     renders a table header
08:14:19     renders table rows
08:14:19       accepts rows with cells
08:14:19       accepts rows with text only
08:14:19   _calculateViewRangeForRowIndex
08:14:19     returns a range based on viewRangeSize
08:14:19   rowIcons and checkable rows
08:14:19     creates an artificial cell when a rowIcon is set on a row
08:14:19   insertRows
08:14:19     inserts rows at the end of the table
08:14:19     renders rows only if view range is not full yet
08:14:19     rowsInserted event must be triggered before rowOrderChanged event
08:14:19   updateRows
08:14:19     updates the model cell texts
08:14:19     updates the html cell texts
08:14:19     does not fail if the row to update is the same instance as the existing one
08:14:19     does not destroy selection
08:14:19     silently updates rows which are not in view range
08:14:19   deleteRows
08:14:19     deletes single rows from model
08:14:19     deletes single rows from html document
08:14:19     considers view range (distinguishes between rendered and non rendered rows, adjusts viewRangeRendered)
08:14:19   deleteAllRows
08:14:19     deletes all rows from model
08:14:19     deletes all rows from html document
08:14:19     silently removes not rendered rows
08:14:19   updateRowOrder
08:14:19     reorders the model rows
08:14:19     reorders the html nodes
08:14:19     considers view range
08:14:19   checkRow
08:14:19     checks the row, does not uncheck others if multiCheck is set to true
08:14:19     unchecks other rows if multiCheck is set to false
08:14:19     does not check the row if checkable is set to false
08:14:19     does not check the row if the row is disabled
08:14:19     does not check the row if the table is disabled
08:14:19     considers view range
08:14:19     keeps added checkable column visible even when reloading factory settings
08:14:19     does not add an additional checkable column if one is already configured
08:14:19   selectRows
08:14:19     updates model
08:14:19     selects rendered rows and unselects others
08:14:19     considers view range
08:14:19     triggers rowsSelected
08:14:19     selectedRow() returns first selected row or null when table has no selection
08:14:19   toggle selection
08:14:19     selects all if not all are selected
08:14:19     selects none if all are selected
08:14:19   selectAll
08:14:19     selects all rows
08:14:19     considers view range -> renders selection only for rendered rows
08:14:19   doRowAction
08:14:19     sends rowAction event with row and column
08:14:19     does not send rowAction event if the row is not selected
08:14:19     does not send rowAction event if it is not the only one selected row
08:14:19   resizeColumn
08:14:19     updates column model and sends resize event 
08:14:19     does not send resize event when resizing is in progress
08:14:19     sends resize event when resizing is finished
08:14:19   autoResizeColumns
08:14:19     distributes the table columns using initialWidth as weight
08:14:19     excludes columns with fixed width
08:14:19     does not make the column smaller than the initial size
08:14:19     does not make the column smaller than a minimum size
08:14:19   sort
08:14:19     updates column model
08:14:19     model update
08:14:19       sets sortAscending according to direction param
08:14:19       resets properties on other columns
08:14:19       sets sortIndex
08:14:19       does not remove sortIndex for columns always included at begin
08:14:19       does not remove sortIndex for columns always included at end
08:14:19       does not remove sortIndex for columns always included at begin and end (combination)
08:14:19       removes column from sort columns
08:14:19     sends rowsSorted event when client side sorting is possible
08:14:19     sends sortRows event when client side sorting is not possible
08:14:19     sorts the data
08:14:19     regroups the data if group by column is active
08:14:19     restores selection after sorting
08:14:19     sorting
08:14:19       sorts text columns considering locale (if browser supports it)
08:14:19       sorts number columns
08:14:19       sorts date columns
08:14:19       uses non sort columns as fallback
08:14:19   column grouping
08:14:19     renders an aggregate row for each group
08:14:19     considers groupingStyle -> aggregate rows must be rendered previous to the grouped rows
08:14:19     considers view range -> only renders an aggregate row for rendered rows
08:14:19     considers view range -> doesn't render an aggregate row if the last row of the group is not rendered
08:14:19     regroups if rows get inserted
08:14:19     regroups if rows get inserted, event is from server and table was empty
08:14:19     does not regroup if rows get inserted, event is from server and table was not empty
08:14:19     regroups if rows get deleted
08:14:19     removes aggregate rows if all rows get deleted
08:14:19     regroups if rows get updated
08:14:19     may group column 0 only
08:14:19     may group column 1 only
08:14:19     may group columns 0 (avg) and 1 (sum)
08:14:19     may group columns 0, 1 and 2
08:14:19     may group columns 2 and 1
08:14:19     may group column 1 only after grouping column 0 first
08:14:19     may group column 1 and 2 after grouping column 0 first
08:14:19   row click
08:14:19     selects row and unselects others
08:14:19     sends selection and click events
08:14:19     sends only click if row already is selected
08:14:19     sends selection, checked and click events if table is checkable and checkbox has been clicked
08:14:19   right click on row
08:14:19     opens context menu
08:14:19     context menu only shows items without header type also if there is a type singleSelection
08:14:19     context menu only shows visible menus
08:14:19   _filterMenus
08:14:19     returns no menus for contextMenu if no row is selected
08:14:19     returns only single selection menus for contextMenu if one row is selected
08:14:19     returns only multi selection menus for contextMenu if multiple rows are selected
08:14:19     returns menus with single- and multi selection set for contextMenu if one or more rows are selected
08:14:19     returns only empty space menus if no row is selected
08:14:19     returns empty space and single selection menus if one row is selected
08:14:19     returns empty space and multi selection menus if multiple rows are selected
08:14:19     returns menus with empty space, single- and multi selection set if one or more rows are selected
08:14:19   row mouse down / move / up
08:14:19     selects multiple rows
08:14:19     only sends selection event, no click
08:14:19     only send one event for mousedown and immediate mouseup on the same row
08:14:19     only selects first row if mouse move selection or multi selection is disabled
08:14:19   moveColumn
08:14:19     moves column from oldPos to newPos
08:14:19     considers view range (does not fail if not all rows are rendered)
08:14:19   updateRowOrder
08:14:19     does not animate ordering for newly inserted rows
08:14:19   updateColumnStructure
08:14:19     resets the model columns
08:14:19     redraws the header to reflect header cell changes (text)
08:14:19     updates width of empty data
08:14:19   updateColumnOrder
08:14:19     reorders the model columns
08:14:19     reorders the html nodes
08:14:19     silently moves cells which are not rendered in view range
08:14:19   updateColumnHeaders
08:14:19     updates the text and sorting state of model columns
08:14:19     updates sort indices of the sort columns if a sort column got removed
08:14:19     updates the text and sorting state of html table header nodes
08:14:19     updates the custom css class of table header nodes
08:14:19   headerVisible
08:14:19     hides/shows the table header
08:14:19   Column visibility
08:14:19     update headers and rows when visibility of a column changes
08:14:19     visibleColumns() only return visible columns
08:14:19     moveColumn() must deal with different indices for visible and all columns
08:14:19 
08:14:19 BooleanColumn
08:14:19   table checkable column
08:14:19     a checkbox column gets inserted if table.checkable=true
08:14:19     no checkbox column gets inserted if table.checkable=false
08:14:19     this.checkableColumn is set to the new column
08:14:19     displays the row.checked state as checkbox
08:14:19   boolean column
08:14:19     displays the cell value as checkbox
08:14:19 
08:14:19 Column
08:14:19   considers horizontal alignment
08:14:19   converts linebreak into <br> in header cells
08:14:19   considers custom css class of a column
08:14:19   considers custom css class of a column, as well for checkbox columns
08:14:19   considers custom css class of a cell, if both are set only the cell class is used
08:14:19   considers htmlEnabled of a cell
08:14:19   caches encoded text of a cell to improve performance
08:14:19   multilineText
08:14:19     replaces
08:14:19  with br, but only if htmlEnabled is false
08:14:19   textWrap
08:14:19     wraps text if column.textWrap and table.multilineText are true
08:14:19     does not wrap text if column.textWrap is false and table.multilineText is true
08:14:19     does not wrap text if column.textWrap is true and table.multilineText is false
08:14:19   initCell
08:14:19     sets the value and the text
08:14:19     calls formatValue to format the text
08:14:19     calls formatValue to format the text, also for cell objects
08:14:19     does not format the value if a text is provided
08:14:19     sets the value to null if only text is provided
08:14:19   setCellValue
08:14:19     sets the value and the text
08:14:19     calls formatValue to format the text
08:14:19   cell getters
08:14:19     cell() should return cell of given row
08:14:19     selectedCell() should return cell from selected row
08:14:19   displayable
08:14:19     if set to false, column may not be made visible
08:14:19 
08:14:19 NumberColumn
08:14:19   background effect
08:14:19     colorGradient1
08:14:19       colors cells from red to green
08:14:19       colors cells according to rounded values
08:14:19     considers view range -> only colors rendered cells
08:14:19     updates colors if row gets deleted
08:14:19     updates colors if row gets inserted
08:14:19     updates colors if row gets updated
08:14:19     colors cells if table gets rendered
08:14:19     restores existing background color if background effect gets removed
08:14:19     barChart
08:14:19       does not overwrite existing background color
08:14:19     setBackgroundEffect
08:14:19       changes the background effect
08:14:19       sends columnBackgroundEffectChanged event
08:14:19       does not send columnBackgroundEffectChanged if server triggered it
08:14:19   calculateMinMaxValues
08:14:19     calculates the min/max values based on rounded values
08:14:19 
08:14:19 scout.comparators
08:14:19   tests 'compare' method of TEXT comparator
08:14:19   tests 'compareIgnoreCase' method of TEXT comparator
08:14:19   tests 'compare' method of NUMERIC comparator
08:14:19   tests 'compare' method of ALPHANUMERIC comparator
08:14:19   tests 'compareIgnoreCase' method of ALPHANUMERIC comparator
08:14:19   tests 'compareIgnoreCase' method of ALPHANUMERIC comparator with session
08:14:19 
08:14:19 AggregateTableControl
08:14:19   aggregate
08:14:19     creates an aggregate row
08:14:19     sums up numbers in a number column
08:14:19     aggregation type none does not aggregate
08:14:19     sums up numbers in a number column but only on filtered rows
08:14:19     sums up numbers in a number column and considers format pattern
08:14:19     sums up numbers in a number column and considers rounded values fo aggregation
08:14:19   eanbled state
08:14:19     is false if there are no number columns
08:14:19     is true if there is at least one number column
08:14:19     is false if there is a number column but without an aggregate function
08:14:19 
08:14:19 TableControl
08:14:19   selected
08:14:19     opens and closes the control container
08:14:19     removes the content of the previous selected control without closing the container
08:14:19     sends selected events (for current and previous selection)
08:14:19 
08:14:19 CellEditor
08:14:19   mouse click
08:14:19     starts cell edit if cell is editable
08:14:19     does not start cell edit if cell is not editable
08:14:19     does not start cell edit if row is disabled
08:14:19     does not start cell edit if table is disabled
08:14:19     does not start cell edit if mouse down and up happened on different cells
08:14:19     does not start cell edit if right mouse button was pressed
08:14:19     does not start cell edit if middle mouse button was pressed
08:14:19     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
08:14:19   startCellEdit event
08:14:19     opens popup with field
08:14:19   endCellEdit event
08:14:19     destroys the field
08:14:19     removes the cell editor popup
08:14:19   completeEdit
08:14:19     sends completeCellEdit
08:14:19     sends completeCellEdit only once
08:14:19     does not remove the popup and its field (will be done by endCellEdit)
08:14:19   cancelEdit
08:14:19     sends cancelCellEdit
08:14:19     removes the popup and its field
08:14:19   validation
08:14:19     shows a tooltip if field has an error
08:14:19     does not sho a tooltip if field has no error
08:14:19   popup recovery
08:14:19     reopens popup if row gets updated
08:14:19     closes popup if row gets deleted
08:14:19     closes popup if all rows get deleted
08:14:19     closes popup (before) table is detached
08:14:19     closes popup when table is removed
08:14:19   tooltip recovery
08:14:19     removes tooltip if row gets deleted
08:14:19 
08:14:19 DateColumnUserFilter
08:14:19   acceptByFields works
08:14:19   acceptByFields works with time
08:14:19   addFilterFields must not create date fields with time
08:14:19 
08:14:19 TableTextUserFilter
08:14:19   filter
08:14:19     filters rows based on cell text
08:14:19     separates cell values with whitepace
08:14:19     works with bean columns
08:14:19 
08:14:19 DateFormat
08:14:19   format
08:14:19     considers d M y
08:14:19     considers h H m a
08:14:19     considers E
08:14:19   parse
08:14:19     considers d M y
08:14:19     considers h H m a
08:14:19   analyze
08:14:19     analyzes the text and returns an object with months, years and days
08:14:19       considers pattern dd.MM.yyyy
08:14:19       considers pattern yyyy-MM-dd
08:14:19       considers pattern MM/dd/yyy
08:14:19       checks correct handling of am/pm
08:14:19       proposes valid dates for pattern dd.MM.yyyy
08:14:19       proposes valid dates for pattern MM.yyyy
08:14:19       proposes valid dates for pattern yyyy
08:14:19       proposes valid times
08:14:19 
08:14:19 DecimalFormat
08:14:19   format
08:14:19     considers decimal separators
08:14:19     considers grouping separators
08:14:19     can swap the position of the minus sign
08:14:19     can handle invalid patterns
08:14:19     distinguishes digits and zero digits
08:14:19     can handle positive and negative subpattern
08:14:19     can handle exotic symbols
08:14:19     can handle percentages, format taken from application
08:14:19     can handle multiplier
08:14:19     can handle rounding mode
08:14:19   round
08:14:19     can handle rounding modes
08:14:19 
08:14:19 TextMap
08:14:19   get
08:14:19     returns correct text for key
08:14:19     may return empty text
08:14:19     may return null text
08:14:19     replaces arguments in text
08:14:19     may replace multiple arguments
08:14:19     returns a text containing undefinied if the key is not found
08:14:19     does a parent lookup if key is not found
08:14:19     returns a text containing undefinied if neither child nor parent contains the key
08:14:19   optGet
08:14:19     returns undefined if key is not found
08:14:19     returns default value if key is not found
08:14:19     returns text if key is found
08:14:19     returns text if key is found, with arguments
08:14:19     replaces the same placeholder if used multiple times
08:14:19     does a parent lookup if key is not found
08:14:19 
08:14:19 scout.texts
08:14:19   init
08:14:19     creates Texts objects for each language tag given in the model
08:14:19     links Texts objects according the sub tags of the language tag
08:14:19     does not override existing text maps
08:14:19   get
08:14:19     returns the Texts for the given language tag
08:14:19     returns a Texts object with correct linking
08:14:19     creates an empty Texts object with correct linking if language tag is unknown
08:14:19 
08:14:19 scout.tooltips
08:14:19   can be installed and uninstalled for a form field
08:14:19   creates a tooltip on mouseenter and removes it on mouseleave
08:14:19   if text
08:14:19     is empty no tooltip will be shown
08:14:19     is a function, it will be called for tooltip text
08:14:19     is undefined no tooltip will be shown
08:14:19     is provided by component, it will be used as tooltip text
08:14:19     is provided as function by component, it will be called and used as tooltip text
08:14:19     is provided using options and by component, text provided using options will be used
08:14:19     is a function, component is passed as first and only argument
08:14:19 
08:14:19 CompactTreeAdapter
08:14:19   selectNodes
08:14:19     selects child node and notifies server if server selects the first title node
08:14:19 
08:14:19 Compacttree
08:14:19   creation
08:14:19     adds no empty section node
08:14:19     adds a node with child node
08:14:19     adds a node with child nodes in correct order
08:14:19     deletes a node
08:14:19     inserts a child node
08:14:19   node click
08:14:19     calls selectNodes
08:14:19 
08:14:19 TreeAdapter
08:14:19   node click
08:14:19     sends selection and click events in one call in this order
08:14:19     sends selection, check and click events if tree is checkable and checkbox has been clicked
08:14:19     does not send click if mouse down happens on another node than mouseup
08:14:19     does not send click if mouse down does not happen on a node
08:14:19   node double click
08:14:19     sends clicked, selection, action and expansion events
08:14:19   node control double click
08:14:19     sends clicked, selection, action and expansion events
08:14:19   selectNodes
08:14:19     sends nodeExpanded for the parents if a hidden node should be selected whose parents are collapsed (revealing the selection)
08:14:19     does not send selection event if triggered by server
08:14:19   checkNodes
08:14:19     does not send checked event if triggered by server
08:14:19   setNodesExpanded
08:14:19     does not send expand event if triggered by server
08:14:19   collapseAll
08:14:19     sends nodeExpanded for every collapsed node
08:14:19   onModelAction
08:14:19     nodesInserted event
08:14:19       calls insertNodes
08:14:19     nodesDeleted event
08:14:19       calls deleteNodes
08:14:19     allChildNodesDeleted event
08:14:19       calls deleteAllChildNodes
08:14:19     nodesSelected event
08:14:19       calls selectNodes
08:14:19     nodeChanged event
08:14:19       calls changeNode
08:14:19       updates the text of the node
08:14:19     nodesUpdated event
08:14:19       calls updateNodes
08:14:19     childNodeOrderChanged event
08:14:19       calls updateNodeOrder
08:14:19     multiple events
08:14:19       handles delete, collapse, insert, expand events correctly
08:14:19 
08:14:19 TreeKeyStrokes
08:14:19   key up
08:14:19     selects the above node in collapsed tree
08:14:19     selects the above node node in expanded tree
08:14:19     selects the last node if no node is selected yet
08:14:19     selects the only node if there is only one
08:14:19     does nothing if first node already is selected
08:14:19   key down
08:14:19     selects the node below in collapsed tree
08:14:19     selects the first node if no row is selected yet
08:14:19     selects the above node node in expanded tree
08:14:19     selects the only node if there is only one
08:14:19     does nothing if last node already is selected
08:14:19   Home
08:14:19     selects first node in collapsed tree
08:14:19     selects first node in expanded tree
08:14:19   Subtract
08:14:19      collapses a node
08:14:19      collapses a node and drill up
08:14:19   Add
08:14:19      expands a node
08:14:19      expands a node and drill down
08:14:19   End
08:14:19      jumps to last node
08:14:19   space
08:14:19     does nothing if no nodes are selected
08:14:19     checks the selected node 
08:14:19     unchecks the selected node 
08:14:19 
08:14:19 TreeNodePosition
08:14:19   _findInsertPositionInFlatList
08:14:19     insert node between two other nodes on the same level
08:14:19     insert node between two other nodes on another level
08:14:19     insert node ahead all other nodes on the same level
08:14:19     insert node below all other nodes on the same level
08:14:19     insert a subtree between two other nodes on the same level
08:14:19     insert a node below another node of the same level with an expanded subtree
08:14:19   _addChildrenToFlatListIfExpanded
08:14:19     expands collapsed node
08:14:19     expands collapsed node with different levels in insertBatch
08:14:19 
08:14:19 Tree
08:14:19   creation
08:14:19     adds nodes
08:14:19     does not add notes if no nodes are provided
08:14:19   insertNodes
08:14:19     inserting a child
08:14:19       inserts in a reasonable order if childNodeIndex is not set
08:14:19       updates model
08:14:19       updates model with a complex node containing another node
08:14:19       updates html document if parent is expanded
08:14:19       updates html document at a specific position
08:14:19     only updates the model if parent is collapsed
08:14:19     expands the parent if parent.expanded = true and the new inserted nodes are the first child nodes
08:14:19     with breadcrumb style
08:14:19       inserts a html node if the parent node is selected
08:14:19       only updates model if the parent node is not selected
08:14:19       inserts html nodes at a specific position
08:14:19     expands the parent if parent.expanded = true and the new inserted nodes are the first child nodes
08:14:19   updateNodes
08:14:19     update same node instance
08:14:19     enabled update
08:14:19       updates the enabled state of the model node
08:14:19       updates the enabled state of the html node, if visible
08:14:19       updates the enabled state of the html node after expansion, if not visible
08:14:19     enabled update on checkable tree
08:14:19       updates the enabled state of the model node
08:14:19       updates the enabled state of the html node, if visible
08:14:19       updates the enabled state of the html node after expansion, if not visible
08:14:19   changeNode
08:14:19     updates the text of the model node
08:14:19     updates the text of the html node
08:14:19     updates custom cssClass of model and html node
08:14:19     preserves child-of-selected when root nodes get changed
08:14:19     preserves child-of-selected when child nodes get changed
08:14:19     preserves group css class when nodes get updated
08:14:19   deleteNodes
08:14:19     deleting a child
08:14:19       updates model
08:14:19       updates html document
08:14:19       updates child node indices
08:14:19       considers view range (distinguishes between rendered and non rendered rows, adjusts viewRangeRendered)
08:14:19     deleting a root node
08:14:19       updates model
08:14:19       updates html document
08:14:19       deleting a collapsed root node
08:14:19         updates model
08:14:19         updates html document
08:14:19     deleting all nodes
08:14:19       updates model
08:14:19       updates html document
08:14:19   deleteAllChildNodes
08:14:19     deletes all nodes from model
08:14:19     deletes all nodes from html document
08:14:19     deletes all nodes from model for a given parent
08:14:19     deletes all nodes from html document for a given parent
08:14:19   checkNodes
08:14:19     checks a subnode -> mark upper nodes 
08:14:19     checks a node -> mark upper nodes -> uncheck node and test if node keeps marked because children are checked
08:14:19     checks a subnode and its sibling -> mark upper nodes -> uncheck one of the siblings
08:14:19     does not check a disabled node
08:14:19     does not check a node in a disabled tree
08:14:19     never checks two nodes if multiCheck is set to false
08:14:19     checks children if autoCheckChildren is set to true
08:14:19     does not check the children if autoCheckChildren is set to false
08:14:19     does not check nodes if checkable is set to false
08:14:19   node click
08:14:19     calls tree._onNodeMouseDown
08:14:19     updates model (selection)
08:14:19   node double click
08:14:19     expands/collapses the node
08:14:19   node control double click
08:14:19     does the same as control single click (does NOT expand and immediately collapse again)
08:14:19   deselectAll
08:14:19     clears the selection
08:14:19   selectNodes
08:14:19     selects a node
08:14:19     selectedNode()
08:14:19     expands the parents if a hidden node should be selected whose parents are collapsed (revealing the selection)
08:14:19     also expands the node if bread crumb mode is enabled
08:14:19     also expands the parents in breadcrumb mode if a hidden node should be selected after being expanded and collapsed while in its hidden state
08:14:19     sets css class ancestor-of-selected on every ancestor of the selected element
08:14:19     sets css class child-of-selected on direct children of the selected element
08:14:19     may select a node which is not rendered
08:14:19     sets parent and ancestor css classes even if nodes are not rendered
08:14:19     sets child-of-selected css class even if nodes are not rendered
08:14:19   expandNode
08:14:19     sets css class child-of-selected on direct children if the expanded node is selected
08:14:19     renders the child nodes if parent is expanded
08:14:19     with breadcrumb style
08:14:19       renders the child nodes if parent is expanded
08:14:19       ensures top level nodes are rendered
08:14:19   expandAllParentNodes
08:14:19     expands all parent nodes of the given node (model)
08:14:19     expands all parent nodes of the given node (html)
08:14:19   collapseNode
08:14:19     prevents collapsing in bread crumb mode if node is selected
08:14:19   collapseAll
08:14:19     collapses all nodes
08:14:19   updateItemPath
08:14:19     Sets css class group on every element within the same group
08:14:19   updateNodeOrder
08:14:19     reorders the child nodes if parent is given (model)
08:14:19     reorders the child nodes if parent is given and expanded (model)
08:14:19     reorders the child nodes if parent is given (html)
08:14:19     considers view range when updating child node order
08:14:19     reorders expanded child nodes if parent is given (model)
08:14:19     reorders the root nodes if no parent is given (model)
08:14:19     reorders the root nodes if no parent is given (html)
08:14:19     reorders expanded root nodes if no parent is given (model)
08:14:19     reorders expanded root nodes if no parent is given (html)
08:14:19   tree filter
08:14:19     filters nodes when filter() is called
08:14:19     filters nodes when filter is added and removed
08:14:19     makes sure only filtered nodes are displayed when node gets expanded
08:14:19     applies filter if a node gets changed
08:14:19     applies filter if a node gets inserted
08:14:19     make sure nodes unchanged by filters are attached. See ticket #168957
08:14:19   tree enabled/disabled
08:14:19     disables checkboxes when tree is disabled
08:14:19   test visible list and map
08:14:19     with initial all expanded nodes
08:14:19       init with all expanded in correct order
08:14:19       collapse a node -> all children have to be removed
08:14:19       filter node -> filtered node and children has to be removed from visible
08:14:19       update node -> node is filtered
08:14:19       insert expanded node to expanded parent
08:14:19       insert child node in filtered parent
08:14:19       insert child node which should be filtered
08:14:19     with initial all closed nodes
08:14:19       init with all collapsed
08:14:19       insert child node collapsed parent
08:14:19       expand node
08:14:19       expand child node
08:14:19   destroy tree nodes
08:14:19     should destroy all tree nodes and set destroyed flag
08:14:19 
08:14:19 scout.Call
08:14:19   calls done on success
08:14:19   calls fail on failure
08:14:19   retries on failure
08:14:19 
08:14:19 Code
08:14:19   init
08:14:19     registers texts if texts property is set
08:14:19     uses the language configured by scout.codes.defaultLanguage as default
08:14:19     fails if text and texts are set
08:14:19   text
08:14:19     returns the text for the given languageTag (with texts property)
08:14:19     returns the text for the given locale (with texts property)
08:14:19     returns the text for the given languageTag (with text property)
08:14:19     returns the text for the given languageTag (with text property including a text key)
08:14:19 
08:14:19 CodeType
08:14:19   init
08:14:19     creates codes and hierarchy
08:14:19   add
08:14:19     adds new root code to codeType
08:14:19     adds new child code to codeType
08:14:19   get
08:14:19     returns code with codeId
08:14:19     throws error for unknown codeId
08:14:19   getCodes
08:14:19     returns all codes
08:14:19     returns root codes
08:14:19 
08:14:19 DetachHelper
08:14:19   restores sticky tooltips
08:14:19   removes tooltip when achor is detached
08:14:19   considers the context of $anchor -> only removes tooltips in that context
08:14:19 
08:14:19 Device
08:14:19   scout.device
08:14:19     is initialized automatically
08:14:19   isWindowsTablet
08:14:19     returns true when browser is Edge and scrollbarWidth is 0
08:14:19   user agent parsing
08:14:19     recognizes iOS devices
08:14:19     recognizes Android devices
08:14:19     recognizes normal Windows PCs
08:14:19     recognizes supported browsers
08:14:19 
08:14:19 EventSupport
08:14:19   on / trigger / off
08:14:19     single event func only triggered until off() is called
08:14:19     multiple events
08:14:19   one
08:14:19     single event func only triggered once when registered with one()
08:14:19     event parameter passed to registered func
08:14:19     de-register function registered with one()
08:14:19   off
08:14:19     remove all with same type
08:14:19     remove specific listener
08:14:19 
08:14:19 Range
08:14:19   equals
08:14:19   union
08:14:19     returns a new range with the sum of both ranges
08:14:19     returns a copy of both ranges if the ranges don't overlap
08:14:19     returns a copy of the non empty range if one range is empty
08:14:19   subtract
08:14:19     returns a new range where the second range is removed from the first
08:14:19     returns a copy of the first range if the second does not overlap the first
08:14:19     returns an empty range if second range completely covers the first
08:14:19     returns a new range if second range is inside the first and touches a border
08:14:19     returns an array of two ranges if second range is inside the first but does not touch a border
08:14:19     returns a copy of the first range if the second range is empty
08:14:19     returns an empty range if the first range is empty
08:14:19   subtractAll
08:14:19     subtracts all given ranges
08:14:19     may return multiple ranges
08:14:19   intersect
08:14:19     returns a new range with the part where both ranges overlap
08:14:19     returns an empty range if the ranges don't overlap
08:14:19     returns an empty range if one range is empty
08:14:19 
08:14:19 scout.URL
08:14:19   can parse super-simple URL
08:14:19   can parse empty hash
08:14:19   can parse a moderately simple URL
08:14:19   can convert the URL to string (only changed in order of arguments)
08:14:19   can handle multi-valued parameters
08:14:19   can add parameters
08:14:19   can remove parameters
08:14:19   can create or replace parameters
08:14:19   can handle non-ascii characters
08:14:19   can sort parameters
08:14:19 
08:14:19 scout.arrays
08:14:19   init
08:14:19     checks whether array has correct length and initial values
08:14:19   ensure
08:14:19     creates an array if the param is not an array
08:14:19     returns the param if the param already is an array
08:14:19   remove
08:14:19     removes elements
08:14:19   removeAll
08:14:19     removes all given elements
08:14:19     considers emtpy args
08:14:19   replace
08:14:19     replaces elements
08:14:19   insert
08:14:19     insert element at index
08:14:19   insertArray
08:14:19     insert element array at index
08:14:19   max
08:14:19     returns 0 iff input contains 0
08:14:19     behaves like Math.max on null and undefined
08:14:19     ignores non-number elements
08:14:19   min
08:14:19     returns 0 iff input contains 0
08:14:19     behaves like Math.min on null and undefined
08:14:19     ignores non-number elements
08:14:19   move
08:14:19     replaces elements
08:14:19   union
08:14:19     merges two arrays
08:14:19     merges two arrays and removes duplicates
08:14:19     also works with floats
08:14:19     if the arrays contain objects instead of primitives, it uses their id to check for equality
08:14:19     does not fail if arr1 or arr2 are not defined
08:14:19   equals
08:14:19     checks whether two arrays contain the same elements in the same order
08:14:19     considers emtpy and same arrays
08:14:19     returns true if one array is undefined/null and the other empty
08:14:19   equalsIgnoreOrder
08:14:19     checks whether two arrays contain the same elements without considering the order
08:14:19     considers emtpy and same arrays
08:14:19     returns true if one array is undefined/null and the other empty
08:14:19   findIndex
08:14:19     returns the index of the element for which the given predicate returns true
08:14:19   find
08:14:19     returns the element for which the given predicate returns true
08:14:19   findFrom
08:14:19     returns the element for which the given predicate returns true, starting from a given index
08:14:19     does not return the element for which the given predicate returns true, if it is on the left side of the start index
08:14:19     also checks the element at start index 
08:14:19     searches from right to left if backwards is true
08:14:19   format
08:14:19     formats an array by concatenating each entry
08:14:19     returns '' for empty array or if no array was provided
08:14:19   formatEncoded
08:14:19     encodes the html of each array element
08:14:19   first
08:14:19     finds first array element
08:14:19   last
08:14:19     finds last array element
08:14:19 
08:14:19 scout.codes
08:14:19   can init without data
08:14:19   finds a code type by ID
08:14:19   finds a code by ID (single and two parameter call)
08:14:19   throws an error when code type is not found
08:14:19   throws an error when code is not found
08:14:19   optGet
08:14:19     should work as get if code exists
08:14:19     should return null if code does not exist
08:14:19   add
08:14:19     adds a code type or an array of code types
08:14:19 
08:14:19 scout.dates
08:14:19   shift
08:14:19     shifts year or month or day
08:14:19     shifts year and month if both provided
08:14:19     shifts year and month and day if all provided
08:14:19     shift year
08:14:19       adds or removes years
08:14:19       handles edge case leap year
08:14:19     shift month
08:14:19       adds or removes months
08:14:19       handles edge case start month
08:14:19       handles edge case end month
08:14:19       handles edge case leap year
08:14:19   shiftToNextDayOfType
08:14:19     shifts to next day of type
08:14:19   shiftToPreviousDayOfType
08:14:19     shifts to previous day of type
08:14:19   ensureMonday
08:14:19     shifts to next monday in direction if it is not a monday yet
08:14:19   isSameDay
08:14:19     returns true if day, month and year matches
08:14:19   compareMonths
08:14:19     returns the differences in number of months
08:14:19     ignores time
08:14:19     works with different years
08:14:19   compareDays
08:14:19     returns the differences in number of days
08:14:19     ignores time
08:14:19     works with different month
08:14:19     works with different years
08:14:19   timestamp
08:14:19     returns a string of the expected length withonly digits
08:14:19   orderWeekdays
08:14:19     orders weekdays
08:14:19   toJsonDate / parseJsonDate
08:14:19     can handle missing or invalid inputs
08:14:19     can convert JSON and JS dates
08:14:19   create
08:14:19     can create dates
08:14:19   weekInYear
08:14:19     can calculate week in year
08:14:19   format
08:14:19     can handle invalid values
08:14:19     can format valid dates
08:14:19   compare
08:14:19     can handle invalid dates
08:14:19     can compare valid dates
08:14:19   equals
08:14:19     returns true if the dates are equal, false if not
08:14:19   isLeapYear
08:14:19     correctly identifies leap years
08:14:19   combineDateTime
08:14:19     creates a new date by using date part of param date and time part of param time.
08:14:19     uses 01-01-1970 as date part if date is ommitted
08:14:19     uses 00:00 as time part if time is ommitted
08:14:19 
08:14:19 scout.defaultValues
08:14:19   init
08:14:19     can load invalid configurations
08:14:19   applyTo
08:14:19     can apply default values to JSON
08:14:19     can apply default values to JSON considering the model variant
08:14:19     copies default values 'by value'
08:14:19 
08:14:19 scout.icons
08:14:19   parses bitmap icons
08:14:19   parses font icons (scoutIcons font)
08:14:19   parses font icons (custom font)
08:14:19   parses returns a CSS class for custom fonts
08:14:19   appends CSS class string with custom fonts
08:14:19 
08:14:19 scout.models
08:14:19   get
08:14:19     load object without type
08:14:19     ensure the object is a copy
08:14:19   extend
08:14:19     insert new property into root object
08:14:19     override property in root object
08:14:19     insert new property into a non existing array on root object
08:14:19     override property in tree object
08:14:19     insert new object into tree object
08:14:19     insert new object tree into tree object
08:14:19     insert new object into tree object with fixed index
08:14:19     insert new object into tree object with relative index
08:14:19     insert new object into tree object with relative index and two extension elements
08:14:19     insert object referenced by String
08:14:19     insert object bound to field
08:14:19     insert objects array bound to field
08:14:19 
08:14:19 scout.numbers
08:14:19   round
08:14:19     tests special cases
08:14:19     tests rounding mode 'UP'
08:14:19     tests rounding mode 'DOWN'
08:14:19     tests rounding mode 'CEILING'
08:14:19     tests rounding mode 'FLOOR'
08:14:19     tests rounding mode 'HALF_UP'
08:14:19     tests rounding mode 'HALF_DOWN'
08:14:19   shiftDecimalPoint
08:14:19     can shift decimal point to left and right
08:14:19   randomId
08:14:19     can generate random IDs
08:14:19   correlationId
08:14:19     can generate random correlation IDs
08:14:19 
08:14:19 scout.objects
08:14:19   copyProperties
08:14:19     copies all properties
08:14:19     copies the properties from prototype as well
08:14:19   countOwnProperties
08:14:19     counts all own properties
08:14:19   valueCopy
08:14:19     copies an object by value
08:14:19   isNumber
08:14:19     returns true iff argument is a number
08:14:19   isArray
08:14:19     returns true when argument is an array
08:14:19   isNullOrUndefined
08:14:19     returns true when argument is null or undefined, but not when 0 or any other value
08:14:19   values
08:14:19     returns object values
08:14:19     can handle maps
08:14:19   findChildObjectByKey
08:14:19     find root object
08:14:19     find object in tree
08:14:19     find object in array
08:14:19     find object in nested array
08:14:19     find object in array within the tree
08:14:19     search for not existing property
08:14:19     search for not existing id
08:14:19     search for not existing property and value
08:14:19 
08:14:19 scout.promises
08:14:19   oneByOne stops executing after failure
08:14:19   groupwise stops executing after failed group
08:14:19   parallel stops executing after failed promise
08:14:19   does not cut off error arguments
08:14:19   adds all result arguments, one for each deferred
08:14:19 
08:14:19 scout.strings
08:14:19   nl2br
08:14:19     can convert newlines to br tags
08:14:19     encodes html, if the parameter is set to true (default)
08:14:19   hasText
08:14:19     can check if string has text
08:14:19   repeat
08:14:19     can repeat strings
08:14:19   padZeroLeft
08:14:19     can pad strings with 0
08:14:19   startsWith
08:14:19     can check if a string starts with another
08:14:19   endsWith
08:14:19     can check if a string ends with another
08:14:19   count
08:14:19     can count occurrences
08:14:19   encode
08:14:19     encodes html
08:14:19     does not try to encode empty strings
08:14:19     caches the html element used for encoding
08:14:19   join
08:14:19     joins strings
08:14:19     join works with array as second parameter
08:14:19   box
08:14:19     boxes strings
08:14:19   lowercaseFirstLetter
08:14:19     converts first letter to lowercase
08:14:19   quote
08:14:19     quotes special characters for regexp
08:14:19   asString
08:14:19     converts input to string
08:14:19   plainText
08:14:19     converts html to plain text
08:14:19     does not try to get plaintext of empty strings
08:14:19     caches the html element used for getting plain text
08:14:19     considers upper and lower case tags
08:14:19     converts br, p, div into new lines
08:14:19     converts li, tr into new lines
08:14:19     converts td into whitespaces
08:14:19     converts &nbsp;, &amp;, &gt;, &lt;
08:14:19     preserves tabs
08:14:19     removes leading and trailing newlines if configured
08:14:19     leaves multiple newlines alone unless configured
08:14:19   insertAt
08:14:19     can insert strings into other strings
08:14:19   nvl
08:14:19     returns an empty string when input is null or undefined
08:14:19   countCodePoints
08:14:19     returns the number of codepoints in a string
08:14:19   splitMax
08:14:19     returns not more than limit elements
08:14:19 
08:14:19 Widget
08:14:19   rendering
08:14:19     should set rendering, rendered flags correctly
08:14:19     should set rendering flag to true _while_ the component is rendering
08:14:19   attach/detach
08:14:19     attached and rendered is false by default
08:14:19     attached and rendered has the right value after render/remove and attach/detach
08:14:19   triggerPropertyChange
08:14:19     fires the expected event object
08:14:19     changedProperties is only set when new and old value are not equals
08:14:19   clone
08:14:19     clones only properties marked as clone property
08:14:19     'text' must be recognized as clone property, but not '$container'
08:14:19     prefers properties passed as modelOverride
08:14:19   init
08:14:19     links widget properties with the widget
08:14:19   destroy
08:14:19     destroys the widget
08:14:19     destroys the children
08:14:19     does only destroy children if the parent is the owner
08:14:19     removes the link to parent and owner
08:14:19   setParent
08:14:19     links the widget with the new parent
08:14:19     removes the widget from the old parent if the old is not the owner
08:14:19     does not remove the widget from the old parent if the old is the owner
08:14:19     relinks parent destroy listener to the new parent
08:14:19   remove
08:14:19     removes the widget
08:14:19     removes the children
08:14:19     does not remove the children if owner is removed but parent is still rendered
08:14:19   setProperty
08:14:19     with widget property
08:14:19       links the widget with the new child widget
08:14:19       links the widget with the new child widgets if it is an array
08:14:19       does not fail if new widget is null
08:14:19     calls the _render* method if there is one for this property
08:14:19   property css class
08:14:19     adds or removes custom css class
08:14:19     does not accidentally remove other css classes on a property change
08:14:19     addCssClass
08:14:19       adds the cssClass to the existing classes
08:14:19       does not add the same class multiple times
08:14:19     removeCssClass
08:14:19       removes the cssClass from the existing classes
08:14:19 
08:14:19 Results: 1352 specs, 0 failures, 0 pending
08:14:19 
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/webjars,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/classpath,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/ext,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/ext,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/spec,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] stopped o.e.j.s.h.ContextHandler{/src,file:/home/jenkins/agent/workspace/org.eclipse.scout.rt.branch-6.1_continuous/}
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [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
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [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
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [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
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [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
08:14:19 [INFO] 
08:14:19 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [INFO] Skipping duplicate-finder execution!
08:14:19 [INFO] 
08:14:19 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [INFO] Signature checking is skipped.
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.ui.html.test ---
08:14:19 [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
08:14:19 [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
08:14:19 [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
08:14:19 [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
08:14:19 [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
08:14:19 [INFO] 
08:14:19 [INFO] -------< org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html >--------
08:14:19 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html 6.1.0-SNAPSHOT [32/35]
08:14:19 [INFO] --------------------------------[ jar ]---------------------------------
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:19 [INFO] 
08:14:19 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:19 [INFO] Skipping Rule Enforcement.
08:14:19 [INFO] 
08:14:19 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] 
08:14:20 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] --- build-helper-maven-plugin:1.9.1:add-resource (add-js-resource) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:20 [INFO] Copying 1 resource
08:14:20 [INFO] Copying 5 resources
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Changes detected - recompiling the module!
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] No sources to compile
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] No tests to run.
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Skipping packaging of the test-jar
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] No sources in project. Archive not created.
08:14:20 [INFO] 
08:14:20 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Skipping duplicate-finder execution!
08:14:20 [INFO] 
08:14:20 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [INFO] Signature checking is skipped.
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.svg.ui.html ---
08:14:20 [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
08:14:20 [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
08:14:20 [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
08:14:20 [INFO] 
08:14:20 [INFO] ----------< org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt >----------
08:14:20 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt 6.1.0-SNAPSHOT [33/35]
08:14:20 [INFO] --------------------------------[ jar ]---------------------------------
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.jaxws.apt ---
08:14:20 [INFO] 
08:14:20 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.jaxws.apt ---
08:14:20 [INFO] Skipping Rule Enforcement.
08:14:20 [INFO] 
08:14:20 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] 
08:14:21 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:21 [INFO] Copying 1 resource
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Changes detected - recompiling the module!
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] No sources to compile
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] No tests to run.
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Skipping packaging of the test-jar
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] No sources in project. Archive not created.
08:14:21 [INFO] 
08:14:21 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Skipping duplicate-finder execution!
08:14:21 [INFO] 
08:14:21 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [INFO] Signature checking is skipped.
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.jaxws.apt ---
08:14:21 [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
08:14:21 [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
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] -----< org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test >-----
08:14:21 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test 6.1.0-SNAPSHOT [34/35]
08:14:21 [INFO] --------------------------------[ jar ]---------------------------------
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] Skipping Rule Enforcement.
08:14:21 [INFO] 
08:14:21 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] 
08:14:21 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:21 [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
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] No sources to compile
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:14:21 [INFO] Copying 13 resources
08:14:21 [INFO] 
08:14:21 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:21 [INFO] Changes detected - recompiling the module!
08:14:21 [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
08:14:22 [INFO] 
08:14:22 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:22 [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!
08:14:22 [INFO] 
08:14:22 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:22 [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
08:14:22 
08:14:22 -------------------------------------------------------
08:14:22  T E S T S
08:14:22 -------------------------------------------------------
08:14:22 Running org.eclipse.scout.rt.server.jdbc.BindValueTest
08:14:23 2021-08-17 12:14:23,345 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[]
08:14:23 2021-08-17 12:14:23,410 INFO  [Thread-1] org.eclipse.scout.rt.platform.inventory.ClassInventory.<clinit>(ClassInventory.java:39) - Finished preparation of jandex class inventory in 57.509553 ms - MDC[]
08:14:23 2021-08-17 12:14:23,651 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[]
08:14:23 2021-08-17 12:14:23,654 INFO  [Thread-1] org.eclipse.scout.rt.shared.services.common.code.CodeTypeRegistrator.stateChanged(CodeTypeRegistrator.java:32) - 0 code type classes registered. - MDC[]
08:14:23 2021-08-17 12:14:23,655 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateConfiguration(PlatformImplementor.java:185) - No config.properties found. Running with empty configuration. - MDC[]
08:14:23 2021-08-17 12:14:23,659 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[]
08:14:23 2021-08-17 12:14:23,729 INFO  [main] org.eclipse.scout.rt.server.AbstractServerSession.start(AbstractServerSession.java:218) - Server session started [session=org.eclipse.scout.rt.server.TestJdbcServerSession@4afd21c6[id = 31b0003a-9490-4a8d-999a-da22450c049c], user=default] - MDC[]
08:14:23 2021-08-17 12:14:23,761 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[]
08:14:23 2021-08-17 12:14:23,784 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 SELECT    A
08:14:23 FROM      T
08:14:23 WHERE     A = :a
08:14:23 IN  :a => ? [BIGINT null] - MDC[]
08:14:23 2021-08-17 12:14:23,823 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 SELECT    A
08:14:23 FROM      T
08:14:23 WHERE     A = :a
08:14:23 IN  :a => ? [BIGINT null] - MDC[]
08:14:23 2021-08-17 12:14:23,827 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 SELECT    A
08:14:23 FROM      T
08:14:23 WHERE     A = :a
08:14:23 IN  :a => ? [NULL null] - MDC[]
08:14:23 Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.9 sec - in org.eclipse.scout.rt.server.jdbc.BindValueTest
08:14:23 Running org.eclipse.scout.rt.server.jdbc.SelectInputBindTest
08:14:23 2021-08-17 12:14:23,840 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
08:14:23 2021-08-17 12:14:23,840 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
08:14:23 2021-08-17 12:14:23,851 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,852 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,854 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
08:14:23 IN  :{filter.active} => ? [INTEGER 1]
08:14:23 IN  :{filter.state} => ? [INTEGER 3]
08:14:23 IN  :{filter.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,855 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
08:14:23 IN  :{filter.active} => ? [INTEGER 0]
08:14:23 IN  :{filter.state} => ? [INTEGER 6]
08:14:23 IN  :{filter.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,860 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,860 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,862 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
08:14:23 IN  :{table.active} => ? [INTEGER 1]
08:14:23 IN  :{table.state} => ? [INTEGER 3]
08:14:23 IN  :{table.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,863 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
08:14:23 IN  :{table.active} => ? [INTEGER 0]
08:14:23 IN  :{table.state} => ? [INTEGER 6]
08:14:23 IN  :{table.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,904 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:23 2021-08-17 12:14:23,905 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,906 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 5]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,908 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 6]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,912 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,912 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,913 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
08:14:23 IN  :{active} => ? [INTEGER 1]
08:14:23 IN  :{state} => ? [INTEGER 3]
08:14:23 IN  :{name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,915 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
08:14:23 IN  :{active} => ? [INTEGER 0]
08:14:23 IN  :{state} => ? [INTEGER 6]
08:14:23 IN  :{name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,918 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:23 2021-08-17 12:14:23,918 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,919 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 5]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,921 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 6]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,924 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,925 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,926 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
08:14:23 IN  :{active} => ? [INTEGER 1]
08:14:23 IN  :{state} => ? [INTEGER 3]
08:14:23 IN  :{name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,927 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{active} , S = :{state} WHERE N = :{name}
08:14:23 IN  :{active} => ? [INTEGER 0]
08:14:23 IN  :{state} => ? [INTEGER 6]
08:14:23 IN  :{name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,933 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,933 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,934 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
08:14:23 IN  :{filter.active} => ? [INTEGER 1]
08:14:23 IN  :{filter.state} => ? [INTEGER 3]
08:14:23 IN  :{filter.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,936 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{filter.active} , S = :{filter.state} WHERE N = :{filter.name}
08:14:23 IN  :{filter.active} => ? [INTEGER 0]
08:14:23 IN  :{filter.state} => ? [INTEGER 6]
08:14:23 IN  :{filter.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,940 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,940 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,941 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{TableBeanHolderFilter.active} , S = :{TableBeanHolderFilter.state} WHERE N = :{TableBeanHolderFilter.name}
08:14:23 IN  :{TableBeanHolderFilter.active} => ? [INTEGER 1]
08:14:23 IN  :{TableBeanHolderFilter.state} => ? [INTEGER 3]
08:14:23 IN  :{TableBeanHolderFilter.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,942 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{TableBeanHolderFilter.active} , S = :{TableBeanHolderFilter.state} WHERE N = :{TableBeanHolderFilter.name}
08:14:23 IN  :{TableBeanHolderFilter.active} => ? [INTEGER 0]
08:14:23 IN  :{TableBeanHolderFilter.state} => ? [INTEGER 6]
08:14:23 IN  :{TableBeanHolderFilter.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,945 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,946 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,947 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{tableFieldBeanData.active} , S = :{tableFieldBeanData.state} WHERE N = :{tableFieldBeanData.name}
08:14:23 IN  :{tableFieldBeanData.active} => ? [INTEGER 1]
08:14:23 IN  :{tableFieldBeanData.state} => ? [INTEGER 3]
08:14:23 IN  :{tableFieldBeanData.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,948 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{tableFieldBeanData.active} , S = :{tableFieldBeanData.state} WHERE N = :{tableFieldBeanData.name}
08:14:23 IN  :{tableFieldBeanData.active} => ? [INTEGER 0]
08:14:23 IN  :{tableFieldBeanData.state} => ? [INTEGER 6]
08:14:23 IN  :{tableFieldBeanData.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,951 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:23 2021-08-17 12:14:23,951 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,952 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 5]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,953 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 6]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,956 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:23 2021-08-17 12:14:23,956 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,957 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 5]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,958 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 6]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,961 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = 1 , S = 3 WHERE N = 'lorem' - MDC[]
08:14:23 2021-08-17 12:14:23,961 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,962 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
08:14:23 IN  :{table.active} => ? [INTEGER 1]
08:14:23 IN  :{table.state} => ? [INTEGER 3]
08:14:23 IN  :{table.name} => ? [VARCHAR lorem] - MDC[]
08:14:23 2021-08-17 12:14:23,963 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE MY_TABLE SET A = :{table.active} , S = :{table.state} WHERE N = :{table.name}
08:14:23 IN  :{table.active} => ? [INTEGER 0]
08:14:23 IN  :{table.state} => ? [INTEGER 6]
08:14:23 IN  :{table.name} => ? [VARCHAR ipsum] - MDC[]
08:14:23 2021-08-17 12:14:23,966 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:23 2021-08-17 12:14:23,966 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:23 2021-08-17 12:14:23,967 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 5]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:23 2021-08-17 12:14:23,968 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:23 SQL with binds:
08:14:23 *** UNPARSED ***
08:14:23 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:23 IN  :value => ? [VARCHAR lorem]
08:14:23 IN  :{roles} => ? [BIGINT 6]
08:14:23 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:24 2021-08-17 12:14:24,008 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 5 AND P = 9 - MDC[]
08:14:24 2021-08-17 12:14:24,008 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,009 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:24 IN  :value => ? [VARCHAR lorem]
08:14:24 IN  :{roles} => ? [BIGINT 5]
08:14:24 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:24 2021-08-17 12:14:24,010 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:24 IN  :value => ? [VARCHAR lorem]
08:14:24 IN  :{roles} => ? [BIGINT 6]
08:14:24 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:24 2021-08-17 12:14:24,013 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = 'lorem' WHERE R = 6 AND P = 9 - MDC[]
08:14:24 2021-08-17 12:14:24,013 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,014 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:24 IN  :value => ? [VARCHAR lorem]
08:14:24 IN  :{roles} => ? [BIGINT 6]
08:14:24 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:24 2021-08-17 12:14:24,015 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 *** UNPARSED ***
08:14:24 UDPATE THIS_TABLE SET V = :value WHERE R = :{roles} AND P = :personNr
08:14:24 IN  :value => ? [VARCHAR lorem]
08:14:24 IN  :{roles} => ? [BIGINT 5]
08:14:24 IN  :personNr => ? [BIGINT 9] - MDC[]
08:14:24 Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.188 sec - in org.eclipse.scout.rt.server.jdbc.SelectInputBindTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.SelectIntoArrayTest
08:14:24 2021-08-17 12:14:24,021 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,022 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,022 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :{h.active},
08:14:24           :{h.state},
08:14:24           :{h.name}
08:14:24 OUT :{h.active} => ? [Active]
08:14:24 OUT :{h.state} => ? [State]
08:14:24 OUT :{h.name} => ? [Name] - MDC[]
08:14:24 2021-08-17 12:14:24,028 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     A = :{h.active}
08:14:24           AND B = :{h.state}
08:14:24           AND C = :{h.name}
08:14:24 IN  :{h.active} => ? [INTEGER 1]
08:14:24 IN  :{h.state} => ? [INTEGER 1]
08:14:24 IN  :{h.name} => ? [VARCHAR abc] - MDC[]
08:14:24 2021-08-17 12:14:24,029 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     A = :{h.active}
08:14:24           AND B = :{h.state}
08:14:24           AND C = :{h.name}
08:14:24 IN  :{h.active} => ? [INTEGER null]
08:14:24 IN  :{h.state} => ? [INTEGER null]
08:14:24 IN  :{h.name} => ? [VARCHAR null] - MDC[]
08:14:24 2021-08-17 12:14:24,034 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = 42 - MDC[]
08:14:24 2021-08-17 12:14:24,034 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,035 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = :personNr
08:14:24 INTO      :{roles}
08:14:24 IN  :personNr => ? [BIGINT 42]
08:14:24 OUT :{roles} => ? - MDC[]
08:14:24 2021-08-17 12:14:24,039 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,039 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,040 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :{table.active},
08:14:24           :{table.state},
08:14:24           :{table.name}
08:14:24 OUT :{table.active} => ? [Boolean]
08:14:24 OUT :{table.state} => ? [Integer]
08:14:24 OUT :{table.name} => ? [String] - MDC[]
08:14:24 2021-08-17 12:14:24,043 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = 63 - MDC[]
08:14:24 2021-08-17 12:14:24,043 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,044 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = :personNr
08:14:24 INTO      :{roles}
08:14:24 IN  :personNr => ? [BIGINT 63]
08:14:24 OUT :{roles} => ? - MDC[]
08:14:24 2021-08-17 12:14:24,046 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,046 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,047 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :{table.active},
08:14:24           :{table.state},
08:14:24           :{table.name}
08:14:24 OUT :{table.active} => ? [Boolean]
08:14:24 OUT :{table.state} => ? [Integer]
08:14:24 OUT :{table.name} => ? [String] - MDC[]
08:14:24 2021-08-17 12:14:24,050 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = 42 - MDC[]
08:14:24 2021-08-17 12:14:24,050 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,051 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = :personNr
08:14:24 INTO      :{roles}
08:14:24 IN  :personNr => ? [BIGINT 42]
08:14:24 OUT :{roles} => ? [Long] - MDC[]
08:14:24 2021-08-17 12:14:24,053 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,054 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,055 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :{tableFieldBeanData.active},
08:14:24           :{tableFieldBeanData.state},
08:14:24           :{tableFieldBeanData.name}
08:14:24 OUT :{tableFieldBeanData.active} => ? [Boolean]
08:14:24 OUT :{tableFieldBeanData.state} => ? [Integer]
08:14:24 OUT :{tableFieldBeanData.name} => ? [String] - MDC[]
08:14:24 2021-08-17 12:14:24,057 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = 42 - MDC[]
08:14:24 2021-08-17 12:14:24,057 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,058 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    ROLE_NR
08:14:24 FROM      USER_ROLE
08:14:24 WHERE     USER_NR = :personNr
08:14:24 INTO      :{roles}
08:14:24 IN  :personNr => ? [BIGINT 42]
08:14:24 OUT :{roles} => ? - MDC[]
08:14:24 2021-08-17 12:14:24,061 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,061 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,061 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :{h.active},
08:14:24           :{h.state},
08:14:24           :{h.name}
08:14:24 OUT :{h.active} => ? [boolean]
08:14:24 OUT :{h.state} => ? [int]
08:14:24 OUT :{h.name} => ? [String] - MDC[]
08:14:24 2021-08-17 12:14:24,064 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,066 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:70) - SQL Log:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0 - MDC[]
08:14:24 2021-08-17 12:14:24,066 INFO  [main] org.eclipse.scout.rt.server.jdbc.fixture.SqlServiceMock.createPlainTextLog(SqlServiceMock.java:71) -  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2) - MDC[]
08:14:24 2021-08-17 12:14:24,067 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    A,
08:14:24           B,
08:14:24           C
08:14:24 FROM      T
08:14:24 WHERE     D = 0
08:14:24 INTO      :active,
08:14:24           :state,
08:14:24           :name
08:14:24 OUT :active => ? [Boolean]
08:14:24 OUT :state => ? [Integer]
08:14:24 OUT :name => ? [String] - MDC[]
08:14:24 Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.053 sec - in org.eclipse.scout.rt.server.jdbc.SelectIntoArrayTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.SelectIntoTest
08:14:24 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 sec - in org.eclipse.scout.rt.server.jdbc.SelectIntoTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.builder.EntityContributionUtilityTest
08:14:24 Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec - in org.eclipse.scout.rt.server.jdbc.builder.EntityContributionUtilityTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderTest
08:14:24 Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 sec - in org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderWithComposerTest
08:14:24 Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec - in org.eclipse.scout.rt.server.jdbc.builder.FormDataStatementBuilderWithComposerTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorCreateSqlDumpTest
08:14:24 Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.154 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorCreateSqlDumpTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorFindNextBindTest
08:14:24 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorFindNextBindTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorTest
08:14:24 2021-08-17 12:14:24,372 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    :bind1,
08:14:24           :bind2
08:14:24 FROM      DUAL
08:14:24 IN  :bind1 => ? [NULL null]
08:14:24 IN  :bind2 => ? [NULL null] - MDC[]
08:14:24 2021-08-17 12:14:24,373 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    :bind1,
08:14:24           :bind2
08:14:24 FROM      DUAL
08:14:24 IN  :bind1 => ? [NULL null]
08:14:24 IN  :bind2 => ? [NULL null] - MDC[]
08:14:24 2021-08-17 12:14:24,374 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    1,
08:14:24           2
08:14:24 FROM      DUAL
08:14:24 INTO      :bind1,
08:14:24           :bind2
08:14:24 OUT :bind1 => ? [Integer]
08:14:24 OUT :bind2 => ? [Integer] - MDC[]
08:14:24 2021-08-17 12:14:24,375 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    1,
08:14:24           2
08:14:24 FROM      DUAL
08:14:24 INTO      :bind1,
08:14:24           :bind2
08:14:24 OUT :bind1 => ? [Integer]
08:14:24 OUT :bind2 => ? [Integer] - MDC[]
08:14:24 2021-08-17 12:14:24,376 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    :userId,
08:14:24           :bind1
08:14:24 FROM      DUAL
08:14:24 IN  :userId => ? [NULL null]
08:14:24 IN  :bind1 => ? [NULL null] - MDC[]
08:14:24 2021-08-17 12:14:24,376 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    :bind1,
08:14:24           :bind2
08:14:24 FROM      DUAL
08:14:24 IN  :bind1 => ? [NULL null]
08:14:24 IN  :bind2 => ? [NULL null] - MDC[]
08:14:24 2021-08-17 12:14:24,377 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    1,
08:14:24           2
08:14:24 FROM      DUAL
08:14:24 INTO      :bind1,
08:14:24           :bind2
08:14:24 OUT :bind1 => ? [Integer]
08:14:24 OUT :bind2 => ? [Integer] - MDC[]
08:14:24 2021-08-17 12:14:24,405 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
08:14:24 2021-08-17 12:14:24,405 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
08:14:24 2021-08-17 12:14:24,407 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    P.PERSON_NR,
08:14:24           P.NAME
08:14:24 FROM      PERSON P
08:14:24 WHERE     P.PERSON_NR = :key
08:14:24           AND P.NAME LIKE '%' || :text || '%'
08:14:24 IN  :key => ? [VARCHAR null]
08:14:24 IN  :text => ? [VARCHAR null] - MDC[]
08:14:24 2021-08-17 12:14:24,411 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
08:14:24 2021-08-17 12:14:24,411 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
08:14:24 2021-08-17 12:14:24,413 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    COUNT(*)
08:14:24 FROM      PERSON P
08:14:24 WHERE     NVL(:birthdate, TO_DATE('1.1.3000', 'dd.mm.yyyy')) >= SYSDATE
08:14:24           AND :name LIKE '%Me%'
08:14:24           AND :{addressTable.street} LIKE '%Park%'
08:14:24 INTO      :countConcurrent
08:14:24 IN  :birthdate => ? [TIMESTAMP null]
08:14:24 IN  :name => ? [VARCHAR null]
08:14:24 IN  :{addressTable.street} => ? [VARCHAR null]
08:14:24 OUT :countConcurrent => ? [Integer] - MDC[]
08:14:24 2021-08-17 12:14:24,414 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    COUNT(*)
08:14:24 FROM      PERSON P
08:14:24 WHERE     NVL(:birthdate, TO_DATE('1.1.3000', 'dd.mm.yyyy')) >= SYSDATE
08:14:24           AND :name LIKE '%Me%'
08:14:24           AND :{addressTable.street} LIKE '%Park%'
08:14:24 INTO      :countConcurrent
08:14:24 IN  :birthdate => ? [TIMESTAMP null]
08:14:24 IN  :name => ? [VARCHAR null]
08:14:24 IN  :{addressTable.street} => ? [VARCHAR null]
08:14:24 OUT :countConcurrent => ? [Integer] - MDC[]
08:14:24 2021-08-17 12:14:24,416 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
08:14:24 2021-08-17 12:14:24,416 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
08:14:24 2021-08-17 12:14:24,417 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    BP_NR
08:14:24 FROM      FLM_BP
08:14:24 WHERE     BP_NO LIKE :bpNo
08:14:24 INTO      :bpNr
08:14:24 IN  :bpNo => ? [VARCHAR 12]
08:14:24 OUT :bpNr => ? [Long] - MDC[]
08:14:24 2021-08-17 12:14:24,420 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:188) - JDBC Mapping: jdbc:oracle:thin:@localhost:1521:ORCL - MDC[]
08:14:24 2021-08-17 12:14:24,421 INFO  [main] org.eclipse.scout.rt.server.jdbc.AbstractSqlService.logServiceConfig(AbstractSqlService.java:189) - Schema: null - MDC[]
08:14:24 2021-08-17 12:14:24,421 INFO  [main] org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessor.dump(StatementProcessor.java:847) - 
08:14:24 SQL with binds:
08:14:24 SELECT    1
08:14:24 FROM      DUAL
08:14:24 INTO      :active
08:14:24 OUT :active => ? [Integer] - MDC[]
08:14:24 Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.052 sec - in org.eclipse.scout.rt.server.jdbc.internal.exec.StatementProcessorTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.parsers.BindParserTest
08:14:24 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in org.eclipse.scout.rt.server.jdbc.parsers.BindParserTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.parsers.SqlFunctionReplaceTest
08:14:24 Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec - in org.eclipse.scout.rt.server.jdbc.parsers.SqlFunctionReplaceTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlFormatterTest
08:14:24 Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.085 sec - in org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlFormatterTest
08:14:24 Running org.eclipse.scout.rt.server.jdbc.style.AbstractSqlStyleTest
08:14:24 Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec - in org.eclipse.scout.rt.server.jdbc.style.AbstractSqlStyleTest
08:14:24 
08:14:24 Results :
08:14:24 
08:14:24 Tests run: 95, Failures: 0, Errors: 0, Skipped: 0
08:14:24 
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [WARNING] JAR will be empty - no content was marked for inclusion!
08:14:24 [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
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [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
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [INFO] No sources in project. Archive not created.
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [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
08:14:24 [INFO] 
08:14:24 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [INFO] Skipping duplicate-finder execution!
08:14:24 [INFO] 
08:14:24 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [INFO] Signature checking is skipped.
08:14:24 [INFO] 
08:14:24 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.server.jdbc.test ---
08:14:24 [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
08:14:24 [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
08:14:24 [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
08:14:24 [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
08:14:24 [INFO] 
08:14:24 [INFO] ----< org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test >-----
08:14:24 [INFO] Building org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test 6.1.0-SNAPSHOT [35/35]
08:14:24 [INFO] --------------------------------[ jar ]---------------------------------
08:14:34 [INFO] 
08:14:34 [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.eclipse.scout.rt.server.jaxws.test ---
08:14:34 [INFO] 
08:14:34 [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-rules) @ org.eclipse.scout.rt.server.jaxws.test ---
08:14:34 [INFO] Skipping Rule Enforcement.
08:14:34 [INFO] 
08:14:34 [INFO] --- git-commit-id-plugin:2.2.0:revision (default) @ org.eclipse.scout.rt.server.jaxws.test ---
08:14:34 [INFO] 
08:14:34 [INFO] --- jacoco-maven-plugin:0.7.5.201505241946:prepare-agent (default) @ org.eclipse.scout.rt.server.jaxws.test ---
08:14:34 [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
08:14:34 [INFO] 
08:14:34 [INFO] --- jaxws-maven-plugin:2.4:wsimport (wsimport-1) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:02 [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
08:18:02 [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"]
08:18:02 parsing WSDL...
08:18:02 
08:18:02 
08:18:02 
08:18:02 Generating code...
08:18:02 
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/EchoRequest.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/EchoResponse.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/GetHeaderRequest.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/GetHeaderResponse.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/JaxWsConsumerTestService.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/JaxWsConsumerTestServicePortType.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/ObjectFactory.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SetHeaderRequest.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SetHeaderResponse.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SleepRequest.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/SleepResponse.java
08:18:02 org/eclipse/scout/jaxws/consumer/jaxwsconsumertestservice/package-info.java
08:18:02 [INFO] 
08:18:02 [INFO] --- jaxws-maven-plugin:2.4:wsimport (wsimport-2) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:02 [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
08:18:02 [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"]
08:18:03 parsing WSDL...
08:18:03 
08:18:03 
08:18:03 
08:18:03 Generating code...
08:18:03 
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/JaxWsPingTestService.java
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/JaxWsPingTestServicePortType.java
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/ObjectFactory.java
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/PingRequest.java
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/PingResponse.java
08:18:03 org/eclipse/scout/jaxws/consumer/jaxwspingtestservice/package-info.java
08:18:03 [INFO] 
08:18:03 [INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-wsimport-source) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:03 [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.
08:18:03 [INFO] 
08:18:03 [INFO] --- build-helper-maven-plugin:1.9.1:add-source (add-apt-source) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:03 [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.
08:18:03 [INFO] 
08:18:03 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-wsimport-artifacts) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:03 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:18:03 [INFO] Copying 0 resource
08:18:03 [INFO] 
08:18:03 [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:03 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:18:03 [INFO] Copying 3 resources
08:18:03 [INFO] 
08:18:03 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-jaxws-artifacts-to-meta-inf) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:03 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:18:03 [INFO] Copying 2 resources
08:18:03 [INFO] 
08:18:03 [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:13 [INFO] Changes detected - recompiling the module!
08:18:13 [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
08:18:14 [INFO] Annotation processing: Annotation processing started... [processor=JaxWsAnnotationProcessor]
08:18:14 [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]
08:18:14 [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]
08:18:14 [INFO] Annotation processing: Annotation processing started... [processor=JaxWsAnnotationProcessor]
08:18:14 [INFO] 
08:18:14 [INFO] --- maven-resources-plugin:2.7:copy-resources (copy-apt-artifacts) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:14 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:18:14 [INFO] Copying 0 resource
08:18:14 [INFO] 
08:18:14 [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:14 [INFO] Using 'UTF-8' encoding to copy filtered resources.
08:18:14 [INFO] Copying 2 resources
08:18:14 [INFO] 
08:18:14 [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:14 [INFO] Changes detected - recompiling the module!
08:18:14 [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
08:18:14 [INFO] 
08:18:14 [INFO] --- jandex-maven-plugin:1.0.3:jandex (make-index) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:14 [INFO] 
08:18:14 [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:14 [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
08:18:14 
08:18:14 -------------------------------------------------------
08:18:14  T E S T S
08:18:14 -------------------------------------------------------
08:18:15 Running org.eclipse.scout.rt.server.jaxws.adapter.CalendarDateTimeAdapterTest
08:18:15 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.222 sec - in org.eclipse.scout.rt.server.jaxws.adapter.CalendarDateTimeAdapterTest
08:18:15 Running org.eclipse.scout.rt.server.jaxws.adapter.DefaultTimezoneDateTimeAdapterTest
08:18:15 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 sec - in org.eclipse.scout.rt.server.jaxws.adapter.DefaultTimezoneDateTimeAdapterTest
08:18:15 Running org.eclipse.scout.rt.server.jaxws.adapter.UtcDateTimeAdapterTest
08:18:15 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec - in org.eclipse.scout.rt.server.jaxws.adapter.UtcDateTimeAdapterTest
08:18:15 Running org.eclipse.scout.rt.server.jaxws.consumer.InvocationContextTest
08:18:15 2021-08-17 13:18:15,416 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[]
08:18:15 2021-08-17 13:18:15,444 INFO  [Thread-1] org.eclipse.scout.rt.platform.inventory.ClassInventory.<clinit>(ClassInventory.java:39) - Finished preparation of jandex class inventory in 22.188904 ms - MDC[]
08:18:15 2021-08-17 13:18:15,708 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[]
08:18:15 2021-08-17 13:18:15,710 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[]
08:18:15 2021-08-17 13:18:15,711 INFO  [Thread-1] org.eclipse.scout.rt.shared.services.common.code.CodeTypeRegistrator.stateChanged(CodeTypeRegistrator.java:32) - 0 code type classes registered. - MDC[]
08:18:15 2021-08-17 13:18:15,711 INFO  [Thread-1] org.eclipse.scout.rt.platform.internal.PlatformImplementor.validateConfiguration(PlatformImplementor.java:185) - No config.properties found. Running with empty configuration. - MDC[]
08:18:15 2021-08-17 13:18:15,736 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[]
08:18:15 2021-08-17 13:18:15,740 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[]
08:18:15 2021-08-17 13:18:15,823 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 = ff8d89ce-f952-4f89-bbd0-e7cc71930acc], user=jaxws-user] - MDC[]
08:18:16 Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.664 sec - in org.eclipse.scout.rt.server.jaxws.consumer.InvocationContextTest
08:18:16 Running org.eclipse.scout.rt.server.jaxws.consumer.JaxWsRiClientTest
08:18:16 2021-08-17 13:18:16,015 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 = a6e6d99c-a0e1-45a6-a600-4b4c0d856db2], user=default] - MDC[]
08:18:16 2021-08-17 13:18:16,276 INFO  [main] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsTestProviderInstaller.install(JaxWsTestProviderInstaller.java:47) - Published JaxWsConsumerTestServiceProvider on endpoint http://localhost:41441/WS/JaxWsConsumerTestService - MDC[]
08:18:16 2021-08-17 13:18:16,289 INFO  [main] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsTestProviderInstaller.install(JaxWsTestProviderInstaller.java:49) - Published JaxWsPingTestServiceProvider on endpoint http://localhost:41441/WS/JaxWsPingTestService - MDC[]
08:18:16 2021-08-17 13:18:16,345 INFO  [pool-1-thread-1] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message' - MDC[]
08:18:16 2021-08-17 13:18:16,354 INFO  [pool-1-thread-1] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:16 2021-08-17 13:18:16,861 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:16 2021-08-17 13:18:16,867 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[]
08:18:16 2021-08-17 13:18:16,871 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[]
08:18:16 2021-08-17 13:18:16,876 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:16 2021-08-17 13:18:16,921 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[]
08:18:16 2021-08-17 13:18:16,925 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:16 2021-08-17 13:18:16,931 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[]
08:18:16 2021-08-17 13:18:16,974 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[]
08:18:16 2021-08-17 13:18:16,977 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[]
08:18:16 2021-08-17 13:18:16,980 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[]
08:18:17 2021-08-17 13:18:17,026 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:17 2021-08-17 13:18:17,029 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
08:18:17 2021-08-17 13:18:17,032 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 2' - MDC[]
08:18:17 2021-08-17 13:18:17,076 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 3' - MDC[]
08:18:17 2021-08-17 13:18:17,079 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 4' - MDC[]
08:18:17 2021-08-17 13:18:17,082 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 5' - MDC[]
08:18:17 2021-08-17 13:18:17,126 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 6' - MDC[]
08:18:17 2021-08-17 13:18:17,128 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 7' - MDC[]
08:18:17 2021-08-17 13:18:17,131 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 8' - MDC[]
08:18:17 2021-08-17 13:18:17,174 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 9' - MDC[]
08:18:17 2021-08-17 13:18:17,179 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[]
08:18:17 2021-08-17 13:18:17,198 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:17 2021-08-17 13:18:17,242 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:17 2021-08-17 13:18:17,247 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:17 2021-08-17 13:18:17,258 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsPingTestServiceProvider.ping(JaxWsPingTestServiceProvider.java:30) - echo 'ping' - MDC[]
08:18:17 2021-08-17 13:18:17,303 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:17 2021-08-17 13:18:17,307 INFO  [pool-1-thread-2] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
08:18:17 2021-08-17 13:18:17,857 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[]
08:18:18 2021-08-17 13:18:18,362 INFO  [pool-1-thread-3] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:18 2021-08-17 13:18:18,367 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[]
08:18:18 2021-08-17 13:18:18,371 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[]
08:18:18 2021-08-17 13:18:18,447 INFO  [pool-1-thread-4] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:18 2021-08-17 13:18:18,451 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[]
08:18:18 2021-08-17 13:18:18,957 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'test message' - MDC[]
08:18:18 2021-08-17 13:18:18,964 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:18 2021-08-17 13:18:18,973 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 0' - MDC[]
08:18:18 2021-08-17 13:18:18,977 INFO  [pool-1-thread-5] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
08:18:18 2021-08-17 13:18:18,977 INFO  [pool-1-thread-6] org.eclipse.scout.rt.server.jaxws.consumer.JaxWsConsumerTestServiceProvider.echo(JaxWsConsumerTestServiceProvider.java:60) - echo 'Test Message 1' - MDC[]
08:18:20 Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.013 sec - in org.eclipse.scout.rt.server.jaxws.consumer.JaxWsRiClientTest
08:18:20 Running org.eclipse.scout.rt.server.jaxws.consumer.PortCacheTest
08:18:20 Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.066 sec - in org.eclipse.scout.rt.server.jaxws.consumer.PortCacheTest
08:18:20 Running org.eclipse.scout.rt.server.jaxws.handler.WsConsumerCorrelationIdHandlerTest
08:18:20 Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec - in org.eclipse.scout.rt.server.jaxws.handler.WsConsumerCorrelationIdHandlerTest
08:18:20 Running org.eclipse.scout.rt.server.jaxws.handler.WsProviderCorrelationIdHandlerTest
08:18:20 Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec - in org.eclipse.scout.rt.server.jaxws.handler.WsProviderCorrelationIdHandlerTest
08:18:20 
08:18:20 Results :
08:18:20 
08:18:20 Tests run: 39, Failures: 0, Errors: 0, Skipped: 0
08:18:20 
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [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
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-site-plugin:3.4:attach-descriptor (attach-descriptor) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-jar-plugin:2.6:test-jar (attach-tests) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [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
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-source-plugin:2.4:jar-no-fork (attach-sources) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [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
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-source-plugin:2.4:test-jar-no-fork (attach-test-sources) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [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
08:18:20 [INFO] 
08:18:20 [INFO] --- duplicate-finder-maven-plugin:1.2.1:check (default) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [INFO] Skipping duplicate-finder execution!
08:18:20 [INFO] 
08:18:20 [INFO] --- animal-sniffer-maven-plugin:1.15:check (enforce-java-api-compatibility) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [INFO] Signature checking is skipped.
08:18:20 [INFO] 
08:18:20 [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.eclipse.scout.rt.server.jaxws.test ---
08:18:20 [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
08:18:20 [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
08:18:20 [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
08:18:20 [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
08:18:20 [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
08:18:20 [INFO] ------------------------------------------------------------------------
08:18:20 [INFO] Reactor Summary for Eclipse Scout RT 6.1.0-SNAPSHOT:
08:18:20 [INFO] 
08:18:20 [INFO] Eclipse Scout RT ................................... SUCCESS [35:15 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.json ........ SUCCESS [02:33 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.platform . SUCCESS [01:04 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.platform.test SUCCESS [02:01 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.shared ... SUCCESS [  2.078 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.shared.test SUCCESS [  3.451 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.commons SUCCESS [  0.847 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.commons.test SUCCESS [  6.183 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.api .. SUCCESS [  1.802 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server ... SUCCESS [  0.936 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.test SUCCESS [  7.550 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jms SUCCESS [  0.715 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws SUCCESS [  1.807 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.jaxws.apt ... SUCCESS [  0.989 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jaxws.test SUCCESS [03:55 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc SUCCESS [  0.882 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.server.jdbc.test SUCCESS [  3.501 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.api.test SUCCESS [  2.269 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.jms .. SUCCESS [  1.261 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.mom.jms.test SUCCESS [02:34 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.client ... SUCCESS [  3.142 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.client.test SUCCESS [ 24.694 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.client SUCCESS [  3.553 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.client.test SUCCESS [  1.734 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.serverbridge SUCCESS [  0.719 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.scriptprocessor SUCCESS [01:42 min]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html .. SUCCESS [ 21.469 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.test SUCCESS [13:33 min]
08:18:20 [INFO] org.eclipse.scout.rt.ui.html.selenium .............. SUCCESS [  8.330 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.ui.html.scriptprocessor.test SUCCESS [  2.147 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.rt.svg.ui.html SUCCESS [  0.887 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty ... SUCCESS [  3.479 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty.test.affix SUCCESS [  0.771 s]
08:18:20 [INFO] org.eclipse.scout.rt:org.eclipse.scout.dev.jetty.test SUCCESS [  1.225 s]
08:18:20 [INFO] org.eclipse.scout.rt-settings ...................... SUCCESS [  0.816 s]
08:18:20 [INFO] ------------------------------------------------------------------------
08:18:20 [INFO] BUILD SUCCESS
08:18:20 [INFO] ------------------------------------------------------------------------
08:18:20 [INFO] Total time:  01:04 h
08:18:20 [INFO] Finished at: 2021-08-17T12:18:20Z
08:18:20 [INFO] ------------------------------------------------------------------------
08:18:21 Recording test results
08:18:22 [Checks API] No suitable checks publisher found.
08:18:22 Finished: SUCCESS