all: intial code import
This commit is contained in:
0
ContactBook.package/ContactBookTest.class/README.md
Normal file
0
ContactBook.package/ContactBookTest.class/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
testing
|
||||
testContactManagement
|
||||
| book contact |
|
||||
book := ContactBook new.
|
||||
contact := Contact newNamed: 'Veit Heller' email: 'veit@veitheller.de'.
|
||||
book addContact: contact.
|
||||
self assert: book contacts size equals: 1.
|
||||
book removeContact: contact.
|
||||
self assert: book contacts size equals: 0.
|
||||
|
@@ -0,0 +1,5 @@
|
||||
testing
|
||||
testCreation
|
||||
| book |
|
||||
book := ContactBook new.
|
||||
self assert: book contacts size equals: 0.
|
14
ContactBook.package/ContactBookTest.class/properties.json
Normal file
14
ContactBook.package/ContactBookTest.class/properties.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"category" : "ContactBook",
|
||||
"classinstvars" : [
|
||||
],
|
||||
"classvars" : [
|
||||
],
|
||||
"commentStamp" : "",
|
||||
"instvars" : [
|
||||
],
|
||||
"name" : "ContactBookTest",
|
||||
"pools" : [
|
||||
],
|
||||
"super" : "TestCase",
|
||||
"type" : "normal" }
|
Reference in New Issue
Block a user