The final project of the software testing course in NCTU.
make
make test
make show_cov
-
Constructors/Destructors
- vector()
-
Capacity
- int size()
- void resize(int)
- int capacity()
- bool empty()
- void reserve(int n)
-
Element access
- int operator[](int index)
-
Modifiers:
- void pushBack(int element)
- void popBack()
- void insert(int position, int element)
- int erase(int position)
- void clear()
- void sort()
CI by using Travis CICoverage by CodecovReference repo- Generic types (templates)
- Compatibility with C++ STL