TEST(Stack, GetValue_correct)
{
	Stack<int> *S = new Stack<int>;
	S->Push(2);
	S->Push(5);
	EXPECT_EQ(5, S->GetValue());
}