Learn, todo and done 13-17/7/20
Learn BDD Behat Unit test Functional test Todo Done Updated the default table columns names in the files table. PR #464 for Issue #462 Reference Introduction to BDD with Behat Sandi Metz, OO code Bob Martin, TDD
Learn BDD Behat Unit test Functional test Todo Done Updated the default table columns names in the files table. PR #464 for Issue #462 Reference Introduction to BDD with Behat Sandi Metz, OO code Bob Martin, TDD
Learn Unit test Functional test PHP_CodeSniffer Todo Done 7/7 AWS Summit Online 11:00-11:30 Module 1: Introduction to the AWS Cloud 11:35-12:05 Module 2: Getting started with the AWS Cloud or CI/CD for modern applications on AWS (Level 300) 12:10-12:40 Module 3: Building in the cloud 1:30-2:00 Module 4: Secure your cloud applications 2:05-2:35 Purpose-built databases for modern applications (Level 200) 2:40-3:10 Introduction to AWS Training and Certification PR #464 for Issue #462 Used PHP CodeSniffer on AdminSiteAccessTest.php Problem Difficult to install Codeception in local gigaDB server. Reference
What is Codeception? Codeception is a framework written in PHP for testing application and its multi-featured test framework powered by famous PHPUnit Framework. It can manage Unit, Functional and Acceptance for web application. How to create a Unit Test? Testing pieces of code before coupling them together. It creates a new ExampleTest file located in the tests/unit directory. php vendor/bin/codecept generate:test unit Example Run the newly created test with this command. php vendor/bin/codecept run unit ExampleTest ...