map tests (not yet)
authorklao
Sat, 03 Apr 2004 18:22:08 +0000
changeset 28391e78d9b78f4
parent 282 7f85e99502db
child 284 2d4684f76aac
map tests (not yet)
src/work/klao/Makefile
src/work/klao/map_test.cc
     1.1 --- a/src/work/klao/Makefile	Sat Apr 03 18:21:25 2004 +0000
     1.2 +++ b/src/work/klao/Makefile	Sat Apr 03 18:22:08 2004 +0000
     1.3 @@ -1,4 +1,4 @@
     1.4 -BINARIES = path_test
     1.5 +BINARIES = path_test map_test
     1.6  INCLUDEDIRS= -I. -I.. -I../../include -I../{marci,jacint,alpar,johanna,akos}
     1.7  include ../makefile
     1.8  
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/src/work/klao/map_test.cc	Sat Apr 03 18:22:08 2004 +0000
     2.3 @@ -0,0 +1,14 @@
     2.4 +#include <iostream>
     2.5 +
     2.6 +#include <skeletons/maps.h>
     2.7 +
     2.8 +using namespace std;
     2.9 +using namespace hugo::skeleton;
    2.10 +
    2.11 +int main()
    2.12 +{
    2.13 +  ReadableMap<int, char> a;
    2.14 +
    2.15 +  cout << sizeof a << endl;
    2.16 +
    2.17 +}