Differences between revisions 6 and 7
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 * Ron Jeffries' [http://www.xprogramming.com/xpmag/acsBowling.htm Adventures in C#: The Bowling Game] explores bowling scoring in C#.
 * William Wake's [http://www.xp123.com/xplor/xp0201/index.shtml Test-First Challenge] builds a spreadsheet program in Java. This is one of the best on-line demos I know, as it lets ''you'' write the code to make his tests pass. Translating the tests to other languages should be simple. There are also links to several solutions.
 * William Wake's [http://www.xp123.com/xplor/xp0101/index.shtml The Test-First Stoplight] includes a simple Java example of a Person class.
 * Will Stott and James Newkirk's [http://msdn.microsoft.com/msdnmag/issues/04/04/ExtremeProgramming/ Test-Driven C#: Improve the Design and Flexibility of Your Project with Extreme Programming Techniques] includes some simple examples
 * Christopher Bennage's [http://devlicio.us/blogs/christopher_bennage/archive/2007/08/26/tdd-example-querying-a-repository.aspx TDD Example: Querying a Repository] shows a simple test using a database and C#.
 * Brian Marick's [http://www.exampler.com/blog/2007/06/26/a-workbook-for-practicing-test-driven-design-draft/ A workbook for practicing test-driven design (draft)] uses Java to develop an interface for a simple hierarchical data format.
 * Scott Bellware's [http://codebetter.com/blogs/scott.bellware/archive/2005/11/23/135001.aspx Test-Driven Development Example: Factorial] walks through developing a factorial calculator in C#.
 * Olof Bjarnason has collected his own list of [http://sites.google.com/site/tddproblems/ TDD Problems]
 * Ron Jeffries' [[http://www.xprogramming.com/xpmag/acsBowling.htm|Adventures in C#: The Bowling Game]] explores bowling scoring in C#.
 * William Wake's [[http://www.xp123.com/xplor/xp0201/index.shtml|Test-First Challenge]] builds a spreadsheet program in Java. This is one of the best on-line demos I know, as it lets ''you'' write the code to make his tests pass. Translating the tests to other languages should be simple. There are also links to several solutions.
 * William Wake's [[http://www.xp123.com/xplor/xp0101/index.shtml|The Test-First Stoplight]] includes a simple Java example of a Person class.
 * Will Stott and James Newkirk's [[http://msdn.microsoft.com/msdnmag/issues/04/04/ExtremeProgramming/|Test-Driven C#: Improve the Design and Flexibility of Your Project with Extreme Programming Techniques]] includes some simple examples
 * Christopher Bennage's [[http://devlicio.us/blogs/christopher_bennage/archive/2007/08/26/tdd-example-querying-a-repository.aspx|TDD Example: Querying a Repository]] shows a simple test using a database and C#.
 * Brian Marick's [[http://www.exampler.com/blog/2007/06/26/a-workbook-for-practicing-test-driven-design-draft/|A workbook for practicing test-driven design (draft)]] uses Java to develop an interface for a simple hierarchical data format.
 * Scott Bellware's [[http://codebetter.com/blogs/scott.bellware/archive/2005/11/23/135001.aspx|Test-Driven Development Example: Factorial]] walks through developing a factorial calculator in C#.
 * Olof Bjarnason has collected his own list of [[http://sites.google.com/site/tddproblems/|TDD Problems]]
Line 15: Line 15:
 * Brian Button's [http://www.agileprogrammer.com/oneagilecoder/archive/2004/08/10/2868.aspx example of TDDed code]  * Brian Button's [[http://www.agileprogrammer.com/oneagilecoder/archive/2004/08/10/2868.aspx|example of TDDed code]]
Line 19: Line 19:
 * Alistair Cockburn's [http://alistair.cockburn.us/index.php/Coffee_machine_design_problem,_part_1 Coffee Machine] might make a good example problem. (also see [http://alistair.cockburn.us/index.php/Coffee_machine_design_problem%2C_part_2 part 2].)  * Alistair Cockburn's [[http://alistair.cockburn.us/index.php/Coffee_machine_design_problem,_part_1|Coffee Machine]] might make a good example problem. (also see [[http://alistair.cockburn.us/index.php/Coffee_machine_design_problem%2C_part_2|part 2]].)
Line 22: Line 22:
 * Scott Ambler's [http://www.agiledata.org/essays/tdd.html Introduction to Test Driven Design] has a good description before it dives into Test Driven Database Development.
 * Nancy Corbett's [http://www.developer.com/design/article.php/3622546 Test Driven Development, a Portable Methodology] at Developer.com
 * Scott Ambler's [[http://www.agiledata.org/essays/tdd.html|Introduction to Test Driven Design]] has a good description before it dives into Test Driven Database Development.
 * Nancy Corbett's [[http://www.developer.com/design/article.php/3622546|Test Driven Development, a Portable Methodology]] at Developer.com
--> -->

TypeError

'dict' object is not callable

If you want to report a bug, please save this page and attach it to your bug report.

Traceback

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

  1. /home/gdinwiddie/moin-1.8.7-installed/lib/python2.4/site-packages/MoinMoin/request/__init__.py in run (self=<MoinMoin.request.request_cgi.Request object>)

    1. 1309 self.page.send_page()
    2. 1310 else:
    3. 1311 handler(self.page.page_name, self)
    4. 1312
    5. 1313 # every action that didn't use to raise MoinMoinFinish must call this now:
    • handler = <function execute>
    • self = <MoinMoin.request.request_cgi.Request object>
    • self.page = <MoinMoin.Page.Page object>
    • self.page.page_name = u'TestDrivenDevelopmentExamples'
  2. /home/gdinwiddie/moin-1.8.7-installed/lib/python2.4/site-packages/MoinMoin/action/diff.py in execute (pagename=u'TestDrivenDevelopmentExamples', request=<MoinMoin.request.request_cgi.Request object>)

    1. 184 from MoinMoin.util import diff_html
    2. 185 request.write(f.rawHTML(diff_html.diff(request, oldpage.get_raw_body(), newpage.get_raw_body())))
    3. 186 newpage.send_page(count_hit=0, content_only=1, content_id="content-below-diff")
    4. 187 else:
    5. 188 from MoinMoin.util import diff_text
    • newpage = <MoinMoin.Page.Page object>
    • newpage.send_page = <bound method Page.send_page of <MoinMoin.Page.Page object>>
    • count_hit undefined
    • content_only undefined
    • content_id undefined
  3. /home/gdinwiddie/moin-1.8.7-installed/lib/python2.4/site-packages/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page object>, **keywords={'content_id': 'content-below-diff', 'content_only': 1, 'count_hit': 0})

    1. 1199 format_args=pi['formatargs'],
    2. 1200 do_cache=do_cache,
    3. 1201 start_line=pi['lines'])
    4. 1202
    5. 1203 # check for pending footnotes
    • start_line undefined
    • pi = {'acl': <MoinMoin.security.AccessControlList instance>, 'format': 'wiki', 'formatargs': '', 'language': 'en', 'lines': 0}
  4. /home/gdinwiddie/moin-1.8.7-installed/lib/python2.4/site-packages/MoinMoin/Page.py in send_page_content (self=<MoinMoin.Page.Page object>, request=<MoinMoin.request.request_cgi.Request object>, body=u"It's hard to come up with good teaching examples...pment, a Portable Methodology]] at Developer.com\n", format='wiki', format_args='', do_cache=1, **kw={'start_line': 0})

    1. 1287 try:
    2. 1288 code = self.loadCache(request)
    3. 1289 self.execute(request, parser, code)
    4. 1290 except Exception, e:
    5. 1291 if not is_cache_exception(e):
    • self = <MoinMoin.Page.Page object>
    • self.execute = <bound method Page.execute of <MoinMoin.Page.Page object>>
    • request = <MoinMoin.request.request_cgi.Request object>
    • parser = <MoinMoin.parser.text_moin_wiki.Parser instance>
    • code = <code object <module> at 0x7f0e177265b0, file "TestDrivenDevelopmentExamples", line 2>
  5. /home/gdinwiddie/moin-1.8.7-installed/lib/python2.4/site-packages/MoinMoin/Page.py in execute (self=<MoinMoin.Page.Page object>, request=<MoinMoin.request.request_cgi.Request object>, parser=<MoinMoin.parser.text_moin_wiki.Parser instance>, code=<code object <module> at 0x7f0e177265b0, file "TestDrivenDevelopmentExamples", line 2>)

    1. 1318 __file__ = os.path.join(MoinMoin.__loader__.archive, 'dummy')
    2. 1319 try:
    3. 1320 exec code
    4. 1321 except "CacheNeedsUpdate": # convert the exception
    5. 1322 raise Exception("CacheNeedsUpdate")
    • code = <code object <module> at 0x7f0e177265b0, file "TestDrivenDevelopmentExamples", line 2>
  6. /home/gdinwiddie/idiacomputing.com/public_html/TestDrivenDevelopmentExamples in ()

TypeError

'dict' object is not callable

  • args = ("'dict' object is not callable",)
  • message = "'dict' object is not callable"

System Details

  • Date: Sat, 05 Apr 2025 21:44:05 +0000
  • Platform: Linux pdx1-shared-a3-05 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
  • Python: Python 2.7.18 (/usr/bin/python)
  • MoinMoin: Release 1.8.7 (release)