smalltalk
/
osmo-st-all
Archived
1
0
Fork 0

Added TableHeaderElementTest

This commit is contained in:
Sébastien Audier 2009-08-18 05:52:38 +00:00
parent 88cdb2fc88
commit c17b5bde6d
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
ElementTest subclass: TableHeaderElementTest [
<comment: nil>
<category: 'Iliad-Tests-Unit-Elements'>
setUp [
e := TableHeaderElement new
]
testTag [
self assert: e tag = 'th'
]
]