DurieuxPol
DurieuxPol
From @guillep 's idea. Is it possible to have only one class for ticks? All 4 tick classes are rather similar, so it could be possible to refactor them into...
If I set up a chart and show it, then modify it and show it again, there are 2 windows. If I modify the canvas in one of them, like...
I came across this while implementing the Fixed Locator: ```SmallTalk arr := {-1. 0. 1. 4. 7}. chart := RSChart new. chart horizontalTick locator: (RSFixedLocator new ticks: arr). x :=...
Maybe tell the user which test failed
```smalltalk nodeToMutate | n searcher | n := 1. searcher := RBParseTreeSearcher new matches: operator expressionToReplace do: [ :node :answer | n = nodeNumber ifTrue: [ ^ node ]. n...
Some tests may need to be reviewed and refactored, like in `AllTestsMethodsRunningTestSelectionStrategyTest`, `MutationTestingAnalysisTest` or `MutationTestingAnalysisBuilderTest`.
When you try to sort values in the inspector, it sorts them according to the first digit. An example, when you inspect this, and sort the values : ```smalltalk 1...