Skip to content

Commit f63b485

Browse files
committed
Follow pharo conventions for test packages
1 parent fdec755 commit f63b485

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

src/BaselineOfMathVectorMatrix/BaselineOfMathVectorMatrix.class.st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ BaselineOfMathVectorMatrix >> baseline: spec [
1212
spec
1313
package: 'Math-Vector';
1414
package: 'Math-Matrix' with: [ spec requires: #( 'Math-Vector' ) ];
15-
package: 'Math-Tests-Vector' with: [ spec requires: #( 'Math-Vector' ) ];
16-
package: 'Math-Tests-Matrix' with: [ spec requires: #( 'Math-Matrix' ) ].
15+
package: 'Math-Vector-Tests' with: [ spec requires: #( 'Math-Vector' ) ];
16+
package: 'Math-Matrix-Tests' with: [ spec requires: #( 'Math-Matrix' ) ].
1717

1818
spec
1919
group: 'Core' with: #( 'Math-Vector' 'Math-Matrix' );
20-
group: 'Tests' with: #( 'Math-Tests-Vector' 'Math-Tests-Matrix' ) ].
20+
group: 'Tests' with: #( 'Math-Vector-Tests' 'Math-Matrix-Tests' ) ].
2121

22-
spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
22+
spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
2323
spec
2424
package: 'Math-Matrix' with: [ spec requires: #( 'Math-DataStructures-Pharo11' ) ];
2525
package: 'Math-DataStructures-Pharo11' ]

src/Math-Tests-Matrix/PMAdditionalTest.class.st renamed to src/Math-Matrix-Tests/PMAdditionalTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ here are tests that would be in Math-Tests-DHB-Numerical, if it could construct
55
Class {
66
#name : #PMAdditionalTest,
77
#superclass : #TestCase,
8-
#category : #'Math-Tests-Matrix'
8+
#category : #'Math-Matrix-Tests'
99
}
1010

1111
{ #category : #tests }

src/Math-Tests-Matrix/PMJacobiTransformationTest.class.st renamed to src/Math-Matrix-Tests/PMJacobiTransformationTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMJacobiTransformationTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #tests }

src/Math-Tests-Matrix/PMMatrixTest.class.st renamed to src/Math-Matrix-Tests/PMMatrixTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMMatrixTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #tests }

src/Math-Tests-Matrix/PMNDArrayTest.class.st renamed to src/Math-Matrix-Tests/PMNDArrayTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMNDArrayTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #tests }

src/Math-Tests-Matrix/PMQRTest.class.st renamed to src/Math-Matrix-Tests/PMQRTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMQRTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #running }

src/Math-Tests-Matrix/PMRestTest.class.st renamed to src/Math-Matrix-Tests/PMRestTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMRestTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #tests }

src/Math-Tests-Matrix/PMSingularValueDecompositionTest.class.st renamed to src/Math-Matrix-Tests/PMSingularValueDecompositionTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Class {
3535
'actualV',
3636
'actualS'
3737
],
38-
#category : #'Math-Tests-Matrix'
38+
#category : #'Math-Matrix-Tests'
3939
}
4040

4141
{ #category : #'as yet unclassified' }

src/Math-Tests-Matrix/PMSymmetricMatrixTest.class.st renamed to src/Math-Matrix-Tests/PMSymmetricMatrixTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Class {
22
#name : #PMSymmetricMatrixTest,
33
#superclass : #TestCase,
4-
#category : #'Math-Tests-Matrix'
4+
#category : #'Math-Matrix-Tests'
55
}
66

77
{ #category : #tests }

src/Math-Matrix-Tests/package.st

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #'Math-Matrix-Tests' }

0 commit comments

Comments
 (0)