Skip to content

Commit

Permalink
Tag classes in DrTests-TestsRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
astares committed Nov 29, 2020
1 parent a7646ec commit f4d038f
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTDebugTestCommand.class.st
Expand Up @@ -4,7 +4,7 @@ I am the command allowing one to debug a failing test.
Class {
#name : #DTDebugTestCommand,
#superclass : #DTLeafResultCommand,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Commands'
}

{ #category : #hooks }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTError.class.st
Expand Up @@ -4,7 +4,7 @@ I model the fact that a test generated an error.
Class {
#name : #DTError,
#superclass : #DTTestResultType,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Results'
}

{ #category : #factory }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTFail.class.st
Expand Up @@ -4,7 +4,7 @@ I model the fact that a test failed.
Class {
#name : #DTFail,
#superclass : #DTTestResultType,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Results'
}

{ #category : #factory }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTPass.class.st
Expand Up @@ -4,7 +4,7 @@ I model the fact that a test passed.
Class {
#name : #DTPass,
#superclass : #DTTestResultType,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Results'
}

{ #category : #factory }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTRerunCommand.class.st
Expand Up @@ -4,7 +4,7 @@ I am the command allowing one to rerun a subparts of the results of a test-run.
Class {
#name : #DTRerunCommand,
#superclass : #DTResultCommand,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Commands'
}

{ #category : #hooks }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTSkipped.class.st
Expand Up @@ -4,7 +4,7 @@ I model the fact that a test was skipped.
Class {
#name : #DTSkipped,
#superclass : #DTTestResultType,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Results'
}

{ #category : #factory }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTTestLeaf.class.st
Expand Up @@ -9,7 +9,7 @@ Class {
#instVars : [
'type'
],
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Base'
}

{ #category : #'instance creation' }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTTestResultType.class.st
Expand Up @@ -4,7 +4,7 @@ I model an abstract type of result for the run of a test case.
Class {
#name : #DTTestResultType,
#superclass : #Object,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Results'
}

{ #category : #factory }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTTestsRunner.class.st
Expand Up @@ -4,7 +4,7 @@ I am the plugin implementing test runner for DrTests.
Class {
#name : #DTTestsRunner,
#superclass : #DrTestsPlugin,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Base'
}

{ #category : #'api - accessing' }
Expand Down
Expand Up @@ -6,7 +6,7 @@ I can be converted as a test suite via #asTestSuite.
Class {
#name : #DTTestsRunnerConfiguration,
#superclass : #DTPluginConfiguration,
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Base'
}

{ #category : #converting }
Expand Down
2 changes: 1 addition & 1 deletion src/DrTests-TestsRunner/DTTestsRunnerResult.class.st
Expand Up @@ -12,7 +12,7 @@ Class {
#instVars : [
'testsResult'
],
#category : #'DrTests-TestsRunner'
#category : #'DrTests-TestsRunner-Base'
}

{ #category : #accessing }
Expand Down

0 comments on commit f4d038f

Please sign in to comment.