#include #include "Vector.h" using namespace std; int main() { //test constructor Vector intvec(2); Vector charvec; //should test push_back, insert, and resizing in insert for (int i = 0; i < 15; i+=2) intvec.push_back(i); //test operator[] and size() for (int i= 0; i mycopy(intvec); for (int i=0; i