Using Switch in a If if condition

What is this supposed to do? If you want to increment:
buttonPushCounter++;
or
buttonPushCounter += 1;
or (oldschool)
buttonPushCounter = buttonPushCounter + 1;

For checking what is wrong with your code, Serial.print() / Serial.println() can be very helpful.