Unit Tests

- Updated test class to conform to coding standards.
- Implemented TAP.py to allow Python unit tests.
This commit is contained in:
Paul Beckingham
2013-04-07 00:09:16 -04:00
parent d72c6567b0
commit 61fdc0da52
4 changed files with 230 additions and 97 deletions

View File

@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager.
//
// Copyright 2006-2012, Paul Beckingham, Federico Hernandez.
// Copyright 2006-2013, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@@ -55,11 +55,11 @@ public:
void skip (const std::string&);
private:
int mPlanned;
int mCounter;
int mPassed;
int mFailed;
int mSkipped;
int _planned;
int _counter;
int _passed;
int _failed;
int _skipped;
};
#endif