Size: a a a

2019 April 12

A

Alina in QA Сибирь
Нужна помощь!
Нужно написать регламенты для отдела тестирования .
Может есть пример какой- то  грамотно оформленный. Суть:
Получили документы -согласовать-разработали стратегию-согласовали -начали тестирование - сдали отчет.
источник

EK

Evgeniya Koloyarova in QA Сибирь
под документами, что подразумевается?
источник

DS

Dmitriy Smirnov in QA Сибирь
Зашем сложные вопросы задаешь)
источник

A

Alina in QA Сибирь
Evgeniya Koloyarova
под документами, что подразумевается?
Тест  макеты, Проектные решения , тз
источник

AT

Alexander Tarankov in QA Сибирь
Это куда-нть в сторону ГОСТ-ов, ITIL и прочего такого можно покопать
источник

A

Aleksander in QA Сибирь
Да, ГОСТы по тестированию подходят в этом кейсе.
источник
2019 April 13

AT

Alexander Tarankov in QA Сибирь
Alina
Нужна помощь!
Нужно написать регламенты для отдела тестирования .
Может есть пример какой- то  грамотно оформленный. Суть:
Получили документы -согласовать-разработали стратегию-согласовали -начали тестирование - сдали отчет.
Алина, просто для понимания можешь сказать в какой ситуации это потребовалось?

Аутсорс? Госзаказ?
источник

A

Alina in QA Сибирь
В полугос конторе формируем отдел
источник
2019 April 15

ОН

Олег Неумывакин in QA Сибирь
источник

KV

Konstantin Vesninskiy in QA Сибирь
)))
источник

E

Ekaterina in QA Сибирь
😆
источник

AT

Alexander Tarankov in QA Сибирь
источник
2019 April 18

МБ

Мария Бжицкая in QA Сибирь
Привет! 🙂
Приглашаем тестировщиков Томска на TestTrend 🤗
Регистрация по ссылке: https://team.cft.ru/events/105
источник
2019 April 19

EK

Evgeniya Koloyarova in QA Сибирь
Привет пипл!
Мы(импрув) тут планируем внешний митап для QA сделать. 🥳
Ищем третьего спикера 🔍
Хотим попробовать новый формат, раскрою сразу карты - барчик, но проектор будет 🙂
Хотелось бы что-нибудь про автотесты🌚
Если есть желающие поучаствовать или узнать подробности, пишите мне!
источник

A

Aleksander in QA Сибирь
источник

ОН

Олег Неумывакин in QA Сибирь
источник

DS

Dmitriy Smirnov in QA Сибирь
источник

A

Aleksander in QA Сибирь
Тебе есть что рассказать?)
источник

ОН

Олег Неумывакин in QA Сибирь
@alfemy

How to write a new test

last modified by Oleg Neumyvakin on Feb 16, 2019


New test produce new maintenance efforts

When you are going to create a new test first of all you are going to create new maintenance efforts for you and your team.

And when you are writing test code only thought you should keep in mind is how to reduce maintenance cost of this test.
Logs

By default, test should log everything in verbose mode or even trace mode, even results of success operations have to be logged.
Flat code

Test code have to be flat, with minimum or even no inheritance in behavior.
Speed and Memory

Test execution have to be fast and require as minimum memory as possible. If something can be executed asynchronously or parallel it should be executed asynchronously or parallel.
Fail fast

Test should fail as early as possible. At first test should prepare most of the fragile and unstable required data or entities.
Split errors of infrastructure, network, product from test fails

Test can fail because of environment issues like infrastructure services, network is broken by default, product behavior is unstable.

It's a good practice to try classify and split errors of environment from real test failed checks.
Atomic

Test have to be atomic. It shouldn't depend or rely of data created by another test and shouldn't rely of order of execution.
Checks before and after

Test have to check environment for existing of entities it going to create.

If final check is some list is not empty then first check is this list is empty before execution of any actions.

If final check is existence of file or directory then first check is that this file or directory is not exists.
источник

A

Aleksander in QA Сибирь
Олег Неумывакин
@alfemy

How to write a new test

last modified by Oleg Neumyvakin on Feb 16, 2019


New test produce new maintenance efforts

When you are going to create a new test first of all you are going to create new maintenance efforts for you and your team.

And when you are writing test code only thought you should keep in mind is how to reduce maintenance cost of this test.
Logs

By default, test should log everything in verbose mode or even trace mode, even results of success operations have to be logged.
Flat code

Test code have to be flat, with minimum or even no inheritance in behavior.
Speed and Memory

Test execution have to be fast and require as minimum memory as possible. If something can be executed asynchronously or parallel it should be executed asynchronously or parallel.
Fail fast

Test should fail as early as possible. At first test should prepare most of the fragile and unstable required data or entities.
Split errors of infrastructure, network, product from test fails

Test can fail because of environment issues like infrastructure services, network is broken by default, product behavior is unstable.

It's a good practice to try classify and split errors of environment from real test failed checks.
Atomic

Test have to be atomic. It shouldn't depend or rely of data created by another test and shouldn't rely of order of execution.
Checks before and after

Test have to check environment for existing of entities it going to create.

If final check is some list is not empty then first check is this list is empty before execution of any actions.

If final check is existence of file or directory then first check is that this file or directory is not exists.
Убил бы за инглиш:)
источник