Posts by João Marcos Bizarro • 51 points
4 posts
-
1
votes1
answer91
viewsA: Javascript Class Implementation
Hello, Thiago Although ES6 allows the creation of classes, Javascript is still a functional paradigm language. The introduction of ES6 arose from the need for Javascript to communicate with data,…
-
1
votes1
answer178
viewsA: Changing the default mongodb database of a Meteor application
As I answered another question from you, just customize your file package.json, creating a key "scripts" and putting the data of your database as you prefer. You can create scripts for different…
-
0
votes1
answer155
viewsA: Set MONGO_URL in a Meteor project within the file Settings.json
Meteor allows you to create custom commands in the file package.json. For example, create in the file package.json the following: { "scripts": { "start": "MONGO_URL=mongodb://localhost:27017/yourdb…
-
0
votes0
answers138
viewsQ: Phpunit Dbunit Testcase class not found
Galley When I run a test on phpunit whose class extends from Phpunit Dbunit Testcase I get this message: PHP Fatal error: Class 'PHPUnit\DbUnit\TestCase' not found But when I run a test of a class…