Guy
Guy

Reputation: 876

Google App Engine and PHP Testing Upload to Google Cloud Storage

I'm currently working on a file upload section of a project in PHP and I'm looking to upload data to a bucket. I know how to do this just fine, but I'm wondering what the best way to test it is. Is there anyway to test it locally or do I have to deploy and test every time?

Upvotes: 0

Views: 101

Answers (1)

Stuart Langley
Stuart Langley

Reputation: 7054

There is a complete simulation in the dev appserver, including uploading, reading and writing to a cloud storage bucket - you don't need to upload to production to test/debug it.

Upvotes: 1

Related Questions