Skip to content

Commit

Permalink
Merge pull request #21 from TelescopeSt/19-Test-class-should-not-end-…
Browse files Browse the repository at this point in the history
…with-s

19-Test-class-should-not-end-with-s
  • Loading branch information
jecisc committed Jun 28, 2019
2 parents b2a71ea + 9f3ebd3 commit 124f063
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Class {
#name : #TLCysShapeTests,
#name : #TLCystoscapeShapeTest,
#superclass : #TestCase,
#category : 'Telescope-Cytoscape-Tests-Shape'
#category : #'Telescope-Cytoscape-Tests-Shape'
}

{ #category : #helpers }
TLCysShapeTests >> actualClass [
TLCystoscapeShapeTest >> actualClass [
^ TLSimpleShape
]

{ #category : #tests }
TLCysShapeTests >> testCytoscapePolygonPointsFrom [
TLCystoscapeShapeTest >> testCytoscapePolygonPointsFrom [
self
assert:
(self actualClass
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Class {
#name : #TLCytoscapeConnectorTests,
#name : #TLCytoscapeConnectorTest,
#superclass : #BabyMock2TestCase,
#instVars : [
'connector'
],
#category : 'Telescope-Cytoscape-Tests-Connector'
#category : #'Telescope-Cytoscape-Tests-Connector'
}

{ #category : #initialization }
TLCytoscapeConnectorTests >> setUp [
TLCytoscapeConnectorTest >> setUp [
connector := TLCytoscapeConnector new
]

{ #category : #tests }
TLCytoscapeConnectorTests >> testGroupUpdating [
TLCytoscapeConnectorTest >> testGroupUpdating [
| group |
group := TLEntitiesGroup new.
group
Expand All @@ -31,7 +31,7 @@ TLCytoscapeConnectorTests >> testGroupUpdating [
]

{ #category : #tests }
TLCytoscapeConnectorTests >> testGroupUpdatingAfterMoving [
TLCytoscapeConnectorTest >> testGroupUpdatingAfterMoving [
| groupA groupB node |
groupA := TLEntitiesGroup new.
groupA
Expand All @@ -54,7 +54,7 @@ TLCytoscapeConnectorTests >> testGroupUpdatingAfterMoving [
]

{ #category : #tests }
TLCytoscapeConnectorTests >> testLayoutApplicationOnComposite [
TLCytoscapeConnectorTest >> testLayoutApplicationOnComposite [
| group mockLayout |
group := TLEntitiesGroup new.
mockLayout := protocol mock: 'layout'.
Expand All @@ -68,7 +68,7 @@ TLCytoscapeConnectorTests >> testLayoutApplicationOnComposite [
]

{ #category : #tests }
TLCytoscapeConnectorTests >> testLayoutApplicationOnCompositeIntoComposite [
TLCytoscapeConnectorTest >> testLayoutApplicationOnCompositeIntoComposite [
| group mockLayout childrenMockLayout |
group := TLEntitiesGroup new.
mockLayout := protocol mock: 'layout'.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Class {
#name : #TLVirtualStructureTests,
#name : #TLVirtualStructureTest,
#superclass : #TestCase,
#category : 'Telescope-Cytoscape-Tests-Virtual'
#category : #'Telescope-Cytoscape-Tests-Virtual'
}

{ #category : #tests }
TLVirtualStructureTests >> testLayoutApplication [
TLVirtualStructureTest >> testLayoutApplication [
| nodes |
nodes := (1 to: 10)
collect: [ :i |
Expand All @@ -21,7 +21,7 @@ TLVirtualStructureTests >> testLayoutApplication [
]

{ #category : #tests }
TLVirtualStructureTests >> testNodeInCompositeInCompositePosition [
TLVirtualStructureTest >> testNodeInCompositeInCompositePosition [
"Cyril: I think this test is wrong but I am not sure so I tag this test as expected failure for the release and we can patch this later with Guillaume."

<expectedFailure>
Expand All @@ -45,7 +45,7 @@ TLVirtualStructureTests >> testNodeInCompositeInCompositePosition [
]

{ #category : #tests }
TLVirtualStructureTests >> testNodeInCompositePosition [
TLVirtualStructureTest >> testNodeInCompositePosition [
"Cyril: I think this test is wrong but I am not sure so I tag this test as expected failure for the release and we can patch this later with Guillaume."

<expectedFailure>
Expand All @@ -64,7 +64,7 @@ TLVirtualStructureTests >> testNodeInCompositePosition [
]

{ #category : #tests }
TLVirtualStructureTests >> testNodeWithDimension [
TLVirtualStructureTest >> testNodeWithDimension [
| node |
node := TLVirtualNode new dimension: 6 @ 10.
node position: 42 @ 47.
Expand All @@ -74,7 +74,7 @@ TLVirtualStructureTests >> testNodeWithDimension [
]

{ #category : #tests }
TLVirtualStructureTests >> testNodesInGroupInGroup [
TLVirtualStructureTest >> testNodesInGroupInGroup [
"Cyril: I think this test is wrong but I am not sure so I tag this test as expected failure for the release and we can patch this later with Guillaume."

<expectedFailure>
Expand All @@ -93,7 +93,7 @@ TLVirtualStructureTests >> testNodesInGroupInGroup [
]

{ #category : #tests }
TLVirtualStructureTests >> testRemoveNodeFromAGroupThenAddToAnotherWithAdd [
TLVirtualStructureTest >> testRemoveNodeFromAGroupThenAddToAnotherWithAdd [
|groupSource groupTarget node|
node:= TLVirtualNode new.
groupSource := TLVirtualGroup new.
Expand All @@ -113,7 +113,7 @@ TLVirtualStructureTests >> testRemoveNodeFromAGroupThenAddToAnotherWithAdd [
]

{ #category : #tests }
TLVirtualStructureTests >> testRemoveNodeFromAGroupThenAddToAnotherWithParentSelector [
TLVirtualStructureTest >> testRemoveNodeFromAGroupThenAddToAnotherWithParentSelector [
|groupSource groupTarget node|
node:= TLVirtualNode new.
groupSource := TLVirtualGroup new.
Expand All @@ -133,7 +133,7 @@ TLVirtualStructureTests >> testRemoveNodeFromAGroupThenAddToAnotherWithParentSel
]

{ #category : #tests }
TLVirtualStructureTests >> testTwoNodesInCompositePosition [
TLVirtualStructureTest >> testTwoNodesInCompositePosition [
| parent child1 child2 |
parent := TLVirtualNode new dimension: 50 @ 40.
parent compositeMargin: 0@0.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Class {
#name : #TLVisualizationCommandTests,
#name : #TLVisualizationCommandTest,
#superclass : #TestCase,
#category : 'Telescope-Cytoscape-Tests-Commands'
#category : #'Telescope-Cytoscape-Tests-Commands'
}

{ #category : #tests }
TLVisualizationCommandTests >> testTLVisualizationAddEdgeCommand [
TLVisualizationCommandTest >> testTLVisualizationAddEdgeCommand [
| command json |
command := TLVisualizationAddEdgeCommand new
edgeId: '5';
Expand Down

0 comments on commit 124f063

Please sign in to comment.