Package lemon :: Package external :: Package Cheetah :: Package Tests :: Module NameMapper :: Class VFN
[show private | hide private]
[frames | no frames]

Class VFN

  TestCase --+    
             |    
NameMapperTest --+
                 |
                VFN

Known Subclasses:
VFS

Method Summary
  test1(self)
string in dict lookup...
  test10(self)
aFunc in dict lookup in a loop...
  test11(self)
aMeth in dict lookup...
  test12(self)
aMeth in dict lookup in a loop...
  test13(self)
aMeth in dict lookup...
  test14(self)
aMeth in dict lookup in a loop...
  test15(self)
anObj in dict lookup...
  test16(self)
anObj in dict lookup in a loop...
  test17(self)
aDict in dict lookup...
  test18(self)
aDict in dict lookup in a loop...
  test19(self)
aClass.classVar1 in dict lookup...
  test2(self)
string in dict lookup in a loop...
  test20(self)
aClass.classVar1 in dict lookup in a loop...
  test23(self)
anObj.instanceVar1 in dict lookup...
  test24(self)
anObj.instanceVar1 in dict lookup in a loop...
  test27(self)
anObj.meth1 in dict lookup...
  test28(self)
anObj.meth1 in dict lookup in a loop...
  test29(self)
aDict.one in dict lookup...
  test3(self)
int in dict lookup...
  test30(self)
aDict.one in dict lookup in a loop...
  test31(self)
aDict.nestedDict in dict lookup...
  test32(self)
aDict.nestedDict in dict lookup in a loop...
  test33(self)
aDict.nestedDict.one in dict lookup...
  test34(self)
aDict.nestedDict.one in dict lookup in a loop...
  test35(self)
aDict.nestedFunc in dict lookup...
  test36(self)
aDict.nestedFunc in dict lookup in a loop...
  test37(self)
aDict.nestedFunc in dict lookup - without autocalling...
  test38(self)
aDict.nestedFunc in dict lookup in a loop - without autocalling...
  test39(self)
aMeth in dict lookup - without autocalling...
  test4(self)
int in dict lookup in a loop...
  test40(self)
aMeth in dict lookup in a loop - without autocalling...
  test41(self)
anObj.meth3 in dict lookup...
  test42(self)
aMeth in dict lookup in a loop...
  test43(self)
NotFound test...
  test44(self)
NotFound test in a loop...
  test45(self)
Other exception from meth test...
  test46(self)
Other exception from meth test in a loop...
  test47(self)
None in dict lookup...
  test48(self)
None in dict lookup in a loop...
  test49(self)
EmptyString in dict lookup...
  test5(self)
float in dict lookup...
  test50(self)
EmptyString in dict lookup in a loop...
  test51(self)
Other exception from func test...
  test52(self)
Other exception from func test in a loop...
  test53(self)
Other exception from func test...
  test54(self)
Other exception from func test in a loop...
  test55(self)
aDict.nestedDict.aClass in dict lookup...
  test56(self)
aDict.nestedDict.aClass in dict lookup in a loop...
  test57(self)
aDict.nestedDict.aClass in dict lookup - without autocalling...
  test58(self)
aDict.nestedDict.aClass in dict lookup in a loop - without autocalling...
  test59(self)
Other exception from func test -- but without autocalling shouldn't raise...
  test6(self)
float in dict lookup in a loop...
  test60(self)
Other exception from func test in a loop -- but without autocalling shouldn't raise...
  test7(self)
class in dict lookup...
  test8(self)
class in dict lookup in a loop...
  test9(self)
aFunc in dict lookup...
    Inherited from NameMapperTest
  check(self, name)
  get(self, name, autocall)
  namespace(self)
  VFN(self, name, autocall)
  VFS(self, searchList, name, autocall)
    Inherited from TestCase
  __init__(self, methodName)
Create an instance of the class that will use the named test method when executed.
  __call__(self, result)
  __repr__(self)
  __str__(self)
  assert_(self, expr, msg)
Fail the test unless the expression is true.
  assertEqual(self, first, second, msg)
Fail if the two objects are unequal as determined by the '!=' operator.
  assertEquals(self, first, second, msg)
Fail if the two objects are unequal as determined by the '!=' operator.
  assertNotEqual(self, first, second, msg)
Fail if the two objects are equal as determined by the '==' operator.
  assertNotEquals(self, first, second, msg)
Fail if the two objects are equal as determined by the '==' operator.
  assertRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown by callableObj when invoked with arguments args and keyword arguments kwargs.
  countTestCases(self)
  debug(self)
Run the test without collecting errors in a TestResult...
  defaultTestResult(self)
  describe(self)
Returns a one-line description of the test, or None if no description has been provided.
  explain(self)
  fail(self, msg)
Fail immediately, with the given message.
  failIf(self, expr, msg)
Fail the test if the expression is true.
  failIfEqual(self, first, second, msg)
Fail if the two objects are equal as determined by the '==' operator.
  failUnless(self, expr, msg)
Fail the test unless the expression is true.
  failUnlessEqual(self, first, second, msg)
Fail if the two objects are unequal as determined by the '!=' operator.
  failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown by callableObj when invoked with arguments args and keyword arguments kwargs.
  id(self)
  run(self, result)
  setDescription(self, descr)
  setExplanation(self, expln)
  setId(self, id)
  setUp(self)
Hook method for setting up the test fixture before exercising it.
  shortDescription(self)
Returns a one-line description of the test, or None if no description has been provided.
  tearDown(self)
Hook method for deconstructing the test fixture after testing it.
  _setupMetaData(self)
Setup the default meta data for the test case:...
  _setupTestMethod(self)

Class Variable Summary
    Inherited from NameMapperTest
tuple failureException = (<class Cheetah.NameMapper.NotFound a...
dict _testNamespace = {'aClass': <class lemon.external.Cheeta...
    Inherited from TestCase
NoneType name = None                                                                  

Method Details

test1(self)

string in dict lookup

test10(self)

aFunc in dict lookup in a loop

test11(self)

aMeth in dict lookup

test12(self)

aMeth in dict lookup in a loop

test13(self)

aMeth in dict lookup

test14(self)

aMeth in dict lookup in a loop

test15(self)

anObj in dict lookup

test16(self)

anObj in dict lookup in a loop

test17(self)

aDict in dict lookup

test18(self)

aDict in dict lookup in a loop

test19(self)

aClass.classVar1 in dict lookup

test2(self)

string in dict lookup in a loop

test20(self)

aClass.classVar1 in dict lookup in a loop

test23(self)

anObj.instanceVar1 in dict lookup

test24(self)

anObj.instanceVar1 in dict lookup in a loop

test27(self)

anObj.meth1 in dict lookup

test28(self)

anObj.meth1 in dict lookup in a loop

test29(self)

aDict.one in dict lookup

test3(self)

int in dict lookup

test30(self)

aDict.one in dict lookup in a loop

test31(self)

aDict.nestedDict in dict lookup

test32(self)

aDict.nestedDict in dict lookup in a loop

test33(self)

aDict.nestedDict.one in dict lookup

test34(self)

aDict.nestedDict.one in dict lookup in a loop

test35(self)

aDict.nestedFunc in dict lookup

test36(self)

aDict.nestedFunc in dict lookup in a loop

test37(self)

aDict.nestedFunc in dict lookup - without autocalling

test38(self)

aDict.nestedFunc in dict lookup in a loop - without autocalling

test39(self)

aMeth in dict lookup - without autocalling

test4(self)

int in dict lookup in a loop

test40(self)

aMeth in dict lookup in a loop - without autocalling

test41(self)

anObj.meth3 in dict lookup

test42(self)

aMeth in dict lookup in a loop

test43(self)

NotFound test

test44(self)

NotFound test in a loop

test45(self)

Other exception from meth test

test46(self)

Other exception from meth test in a loop

test47(self)

None in dict lookup

test48(self)

None in dict lookup in a loop

test49(self)

EmptyString in dict lookup

test5(self)

float in dict lookup

test50(self)

EmptyString in dict lookup in a loop

test51(self)

Other exception from func test

test52(self)

Other exception from func test in a loop

test53(self)

Other exception from func test

test54(self)

Other exception from func test in a loop

test55(self)

aDict.nestedDict.aClass in dict lookup

test56(self)

aDict.nestedDict.aClass in dict lookup in a loop

test57(self)

aDict.nestedDict.aClass in dict lookup - without autocalling

test58(self)

aDict.nestedDict.aClass in dict lookup in a loop - without autocalling

test59(self)

Other exception from func test -- but without autocalling shouldn't raise

test6(self)

float in dict lookup in a loop

test60(self)

Other exception from func test in a loop -- but without autocalling shouldn't raise

test7(self)

class in dict lookup

test8(self)

class in dict lookup in a loop

test9(self)

aFunc in dict lookup

Generated by Epydoc 2.0 on Mon Nov 10 15:08:09 2003 http://epydoc.sf.net