diff --git a/test.cpp b/test.cpp index 1c138cb..e6f7261 100755 --- a/test.cpp +++ b/test.cpp @@ -47,5 +47,15 @@ int main() { n.push_back("Hcnul"); n.push_back("Rennid"); + //Projection test + vector projectTest; + projectTest.push_back("Breakfast"); + projectTest.push_back("Dinner"); + + cout << "\n***Initiated Projection***\n" << endl; + + Relation sub_r = engine.projection(projectTest, r); + sub_r.display(); + //engine.rename(r, o, n); -} \ No newline at end of file +}