all: intial code import
This commit is contained in:
0
ContactBook.package/ContactTest.class/README.md
Normal file
0
ContactBook.package/ContactTest.class/README.md
Normal file
@@ -0,0 +1,6 @@
|
||||
testing
|
||||
testInstanceCreation
|
||||
| contact |
|
||||
contact := Contact newNamed: 'Marcus Denker' email: 'marcus.denker@inria.fr'.
|
||||
self assert: contact fullname equals: 'Marcus Denker'.
|
||||
self assert: contact email equals: 'marcus.denker@inria.fr'.
|
@@ -0,0 +1,5 @@
|
||||
testing
|
||||
testNameTrimmed
|
||||
| contact |
|
||||
contact := Contact newNamed: ' Veit Heller ' email: 'veit@veitheller.de'.
|
||||
self assert: contact fullname equals: 'Veit Heller'.
|
@@ -0,0 +1,5 @@
|
||||
testing
|
||||
testString
|
||||
| contact |
|
||||
contact := Contact newNamed: ' Veit Heller ' email: 'veit@veitheller.de'.
|
||||
self assert: contact asString equals: 'Veit Heller <veit@veitheller.de>'.
|
14
ContactBook.package/ContactTest.class/properties.json
Normal file
14
ContactBook.package/ContactTest.class/properties.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"category" : "ContactBook",
|
||||
"classinstvars" : [
|
||||
],
|
||||
"classvars" : [
|
||||
],
|
||||
"commentStamp" : "",
|
||||
"instvars" : [
|
||||
],
|
||||
"name" : "ContactTest",
|
||||
"pools" : [
|
||||
],
|
||||
"super" : "TestCase",
|
||||
"type" : "normal" }
|
Reference in New Issue
Block a user