Name: FRA Test Plan
Responsible team: Squad X
Estimated time to execute the test plan:
- Run regression tests
- Execute manual testing in half day
| **Describe the current behavior:** Write details (if possible with details of the code) the current behavior. | |
| **What would you like to improve?** Write what you think would be the correct implementation. Make a list of actions. | |
| **Why is this change necessary?** Write down how it impacts the project today. |
| create table CUSTOMERS(CUST_NAME varchar(100), ADDRESS varchar(100)); | |
| create table ORDERS(ORDER_ID integer, CUST_NAME varchar(100), AMOUNT integer, NO_OF_ITEM integer); | |
| insert into CUSTOMERS(CUST_NAME, ADDRESS) values("A", "Krakow"); | |
| insert into CUSTOMERS(CUST_NAME, ADDRESS) values("B", "London"); | |
| insert into CUSTOMERS(CUST_NAME, ADDRESS) values("C", "Paris"); | |
| insert into ORDERS(ORDER_ID, CUST_NAME, AMOUNT, NO_OF_ITEM) values(1, "A", 150, 3); | |
| insert into ORDERS(ORDER_ID, CUST_NAME, AMOUNT, NO_OF_ITEM) values(1, "A", 100, 2); |
| #language:en | |
| @searchItem | |
| Feature: Search course | |
| Background: | |
| Given that it is on the homepage of Estrategia Concursos | |
| @integration | |
| Scenario: Search course by teacher |
| // Eslint Prettier | |
| { | |
| "editor.formatOnSave": true, | |
| "[javascript]": { | |
| "editor.formatOnSave": false | |
| }, | |
| "[javascriptreact]": { | |
| "editor.formatOnSave": false | |
| }, | |
| "prettier.disableLanguages": ["js"], |
| #language: pt | |
| Funcionalidade: Login | |
| @smoke @service @e2e | |
| Cenário: Devo realizar login com sucesso com usuário com cadastro usando via sms | |
| Dado que insiro celular já cadastrado | |
| Quando faço a autenticação com sms token válido | |
| Então sou direcionado para área logada |
Primeiros passos para verificação de logs de sua aplicação Android na hora do teste exploratorio.
Executar testes manuais com o uso do logcat garante que qualquer ação "suspeita" no aplicativo seja percebido, ou seja, as vezes o aplicativo pode até crashar, mas para o usuário não é perceptível porém se você estiver executando os testes com o logcat você facilmente irá perceber e conseguir reportar o erro.
https://developer.android.com/studio/index.html?hl=pt-br