Unit Tests
- Updated test class to conform to coding standards. - Implemented TAP.py to allow Python unit tests.
This commit is contained in:
12
test/test.h
12
test/test.h
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user