Skip to content

Instantly share code, notes, and snippets.

View marciovrl's full-sized avatar
🏠
Working from home

Márcio Lemos marciovrl

🏠
Working from home
  • São Paulo - Brasil
View GitHub Profile
**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);
@marciovrl
marciovrl / luxoft.md
Last active December 31, 2020 12:43
Tasks 1, 2 and 4.

Test Plan feature Forward Rate Agreement (FRA) contracts worldwide.

Name: FRA Test Plan

Responsible team: Squad X

Estimated time to execute the test plan:

  • Run regression tests
  • Execute manual testing in half day
#language:en
@searchItem
Feature: Search course
Background:
Given that it is on the homepage of Estrategia Concursos
@integration
Scenario: Search course by teacher
@marciovrl
marciovrl / setting.json
Last active July 22, 2020 22:30
for node code in vscode
// Eslint Prettier
{
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"prettier.disableLanguages": ["js"],
@marciovrl
marciovrl / Planning for the QA area.md
Last active April 2, 2020 13:48
Scope of an action plan to organize and structure a company's QA area/chapter.

Planning for the QA area

Objective: Scope of an action plan to organize and structure a company's QA area/chapter.

Schedule

  1. Montagem e diretrizes do Chapter de QA.
  2. Responsabilidade dos integrantes do chapter.
  3. Atividades do QA no time de desenvolvimento:

    3.1. Auxiliar produto;

@marciovrl
marciovrl / plan.md
Last active December 10, 2020 18:21
Example Test Plan

Test Plan feature Login

Name: Login Test Plan

Responsible team: Squad X

Important Documents

Story: {jira link}

Wireframe and prototypes: {invision link}

@marciovrl
marciovrl / .md
Last active April 25, 2019 00:12
Login Test Plan

Test Plan

Nome: Login Test Plan

Documentação

Estóŕia: {link do jira}

Wireframe e prototipos: {link do invision}

Documentação da API: {link do swagger}

@marciovrl
marciovrl / .feature
Last active April 24, 2019 15:48
login.feature
#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
@marciovrl
marciovrl / .md
Created April 18, 2019 00:00
Logcat para iniciantes

Logcat para iniciante

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.

Pré execução dos testes:

  • Instalar Android Studio + SDK:
https://developer.android.com/studio/index.html?hl=pt-br