Skip to main content
9 votes

Should on each test create and nuke a testing database?

Tests should be independent of each other and reproduceble. This can be done with complete database setup for every test as you described or with a predefined database-content where a database-...
k3b's user avatar
  • 7,621
2 votes
Accepted

Should on each test create and nuke a testing database?

In addition to k3b's answer. If you want to use "predefined database-content" you should have a test-database-setup script so the database can be easily set up and loaded on a developer-database ...
Laiv's user avatar
  • 15k
2 votes

Secure REST APIs

(You should really post this on the Cryptography group as well - https://crypto.stackexchange.com/) It is technically possible with the right OS vendor support: The OS has a TPM (probably already ...
Kind Contributor's user avatar
1 vote

How to setup REST API in Codeigniter 3.0

You can do all the basic validation on client-side, and if you need something to validate on server-side from the database you can manage the same in rest API. Register - this should be done on client-...
Kavita Shinde's user avatar
1 vote

How can I do to use Angular 5/6 for frontend and Codeigniter 3 for backend in the same web app?

You can start developing your application in angular 5. And backend can be anything . You just need an API call which can be done using httpClient in angular. Please refer below link. https://next....
Kavita Shinde's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible