domingo, 23 de agosto de 2020

DICAS 3045 - WINDEV TUTORIAL 68 - MONITORAR EVOLUCAO SEUS APLICATIVOS



https://youtu.be/TkR2QbM3rAs


Bom Dia/Boa Tarde/Boa Noite

Esse Ao Vivo vai estrear as 16:00 do dia 01/09/2020 

DICAS 3045 - WINDEV TUTORIAL 68 - MONITORAR EVOLUCAO SEUS APLICATIVOS TESTES
Tutoriel WINDEV : Leçon 4.13. Surveillez l'évolution de vos applications


ASSUNTOS

APRESENTANTANDO O QUE SERA ENSINADO
MOSTRANDO O PAINEL
MOSTRANDO COMO ADICIONAR OU REMOVER NO PAINEL 
MOSTRAR COMO SAIR DO MODO DE ALTERACAO DO PAINEL 
MOSTRAR QUE PODEMOS SALVAR A IMAGEM DO PAINEL 
MOSTRAR AUDIT 
EXPLICANDO TESTES AUTOMATICOS
CRIANDO UM TESTE AUTOMATICO 
COLOCANDO O NOME DO CENARIO
FAZENDO VERIFICAR COM TESTE SE TEM ALGUM ERRO 
COLOCANDO CODIGOS DENTRO DO TESTE



Video original da Franca

https://youtu.be/qMHFxGBcpM4


Playlist Windev TUTORIAL

https://youtu.be/3DshsXJ8I2M














Lesson 4.13. Monitor the evolution of your applications
This lesson will teach you the following concepts
  • What is the dashboard?
  • Automatic tests.
Lesson duration

Estimated time: 20 mn
Previous LessonTable of contentsNext Lesson
Overview
The project dashboard is an essential element for managing the WINDEV projects. The project dashboard gives an overall view of the progress of a project.
The dashboard includes several elements (widgets) that give an overall view of the project status.
In this section, we will present the operations that can be performed on the dashboard elements as well as the management of automatic tests and the optimization of queries.

Answer

If you did not create the windows in the previous lessons, you can follow this lesson by opening a corrected project: in WINDEV's home page (Ctrl + <), click "Tutorial" and select "Full application (with windows)".
A full corrected application project is also available: in WINDEV's home page (Ctrl + <), click "Tutorial" and select "Full application (Answer)"
  • To view the project dashboard (if necessary), go to the "Project" pane, "Project" group and click Display the project dashboard.
The dashboard
Project dashboard
The project dashboard includes several Widgets. Each Widget displays various information about the project.
For example, the "Performances" Widget is used to start the performance profiler or to open the last performance report.
The "Static audit and Compilation" Widget is used to quickly see whether the project contains compilation errors. You have the ability to enable (or not) a Widget, to add one or to delete one at any time.
Automatic tests
One of the most interesting features of the dashboard is to give information about the tests that have been run on the application.
Several tests have already been run while developing our application.
The automatic tests are a category of specific tests. The automatic tests are used to automatically perform some operations on your windows. These tests are recorded as WLanguage scenarios and they can be easily modified in the code editor. Once recorded, the automatic test can be re-run as many times as necessary, to test for example the impact of a modification made to a window, a procedure, ...
Let's give it a try! We are going to create an automatic test on the edit window that was created at the beginning of this lesson.

Remark

The automatic tests can be run on the windows, procedures, classes.
  • To create an automatic test on a window, all you have to do is run the test of the window:
    1. Open the "WIN_Menu" window in the editor.
    2. On the "Automatic tests" pane, in the "Tests" group, expand "New" and select "Record a new scenario".
    3. In the window that is displayed, click "Start recording".
    4. The test of the window is run.
    5. Click the "Finding orders" tab pane.
    6. Choose the "Credit card" payment mode.
    7. Click "Find".
    8. Close the window via "Menu .. Exit" and confirm the end of application.

      Remark

      This option may not be available if you did not follow the entire tutorial. In this case, click the "x" to close the window.
    9. The recording of the automatic test has ended.
    10. The test editor proposes to save a description for the automatic test we just created. Enter the name of the automatic test: "Test for finding orders". Validate.
    11. The test editor displays the WLanguage code of the test that has just been recorded:
      WLanguage code of an automatic test
      The test is currently available and has not been run ( Available test next to the name of the test in the editor).
    12. The test can be run at any time:
      • Select the test name in the test editor.
      • In the popup menu (right click), select "Run".
    13. The test is automatically run and the test editor displays the result in the "Test results" pane (the test was successfully run in our case).
    14. Save the test if necessary ( Save or Ctrl + S)

      Remark

      The WLanguage functions used to run automatic tests are the EmulateXXX functions.
  • We are now going to perform a modification in our window and to run the test again. The modification affects the "Find" Button control. We are going to gray it.
    1. Display the "WIN_Menu" window if necessary.
    2. In the editor, click the "Finding orders" tab pane and select the "Find" Button control.
    3. Open the control description ("Description" in the popup menu).
    4. In the "UI" tab, select "Grayed".
    5. Validate the control description window.
    6. Save the window.
    7. Go back to the test editor (click the corresponding button in the open documents bar).
    8. Run the test again.
    9. The test appears again in the test editor. The "Compilation errors" tab pane reports several test errors.
    10. Redisplay the "WIN_Menu" window in the editor.
    11. Open the description of the "Find" Button control ("Description" in the popup menu).
    12. In the "UI" tab, select "Enabled".
    13. Validate the control description window.
    14. Go back to the test editor (click the corresponding button in the open documents bar).
    15. Run the test again. The test is now successfully run.
  • Another feature of the test editor is the ability to modify or add WLanguage code in the test scenarios. We are going to add code lines to check whether the Table control contains at least one record.
    1. Display the test editor if necessary (for example, double-click "TEST_Menu" in the "Tests" folder of the "Project explorer" pane).
    2. Add the following code before the line "EmulateMenu("_Menu","OPT_Exit")":
      // If the Table control contains no record
      IF WIN_Menu.TABLE_QRY_FindOrders..Count = 0 THEN
      // An error must be signaled
      TestWriteResult(twrError, ...
       "The Table control is empty after search")
      END
      Modifying the WLanguage code of an automatic test
    3. Save the test ( Save or Ctrl + S)
    4. Click the Test an element icon. The test is successfully run. Indeed, the Table control contains at least one record.
The test editor proposes several features that will not be presented in this tutorial:
  • the ability to use a set of test values.
  • the definition of input and output parameters for the test.
  • the ability to create a test library to run the test of an executable on a computer other than the development computer for example.
See Overview of automatic tests for more details about the automatic tests.
  • Close the editor of automatic tests.

DICAS 2978 - WINDEV TUTORIAL 1 - 1.1B - WINDEV TEMA ESCURO E IDIOMA DO AMBIENTE
DICAS 2979 - WINDEV TUTORIAL 2 - 1.2- CRIAR JANELA E INSERIR TEXTO E EXIBIR
DICAS 2980 - WINDEV TUTORIAL 3 - 2.1- VARIAVEIS PARTE 1
DICAS 2981 - WINDEV TUTORIAL 4 - 2.2- VARIAVEIS ESCOPO - PARTE 2
DICAS 2982 - WINDEV TUTORIAL 5 - 2.1- VARIAVEIS OPERADORES PARTE 3
DICAS 2983 - WINDEV TUTORIAL 6 - 2.1.D - VARIAVEIS STRINGS PARTE 4
DICAS 2984 - WINDEV TUTORIAL 7 - 2.1.E - VARIAVEIS ARRAYS PARTE 5
DICAS 2985 - WINDEV TUTORIAL 8 - 2.2.A - CONDICOES IF-SWITCH PARTE 1
DICAS 2986 - WINDEV TUTORIAL 9 - 2.2.B - CONDICOES PARTE 2
DICAS 2987 - WINDEV TUTORIAL 10 - 2.3.A - LOOP PARTE 1
DICAS 2988 - WINDEV TUTORIAL 11 - 2.3.B - LOOP EXEMPLOS PARTE 2
DICAS 2989 - WINDEV TUTORIAL 12 - Lesson 2.4. The procedures - PARTE 1
DICAS 2990 - WINDEV TUTORIAL 13 - Leçon 2.4.b. Procedures Parametros - PARTE 2
DICAS 2991 - WINDEV TUTORIAL 14 - PROCEDURES REFERENCIA - PARTE 3
DICAS 2992 - WINDEV TUTORIAL 15 - PROCEDURES OPCIONAIS OU OBRIGATORIAS - PARTE 4
DICAS 2993 - WINDEV TUTORIAL 16 - PROCEDURES EXEMPLOS - PARTE 5
DICAS 2994 - WINDEV TUTORIAL 17 - PERGUNTAS E RESPOSTA - PARTE 1
DICAS 2995 - WINDEV TUTORIAL 18 - PERGUNTAS E RESPOSTA - PARTE 2
DICAS 2996 - WINDEV TUTORIAL 19 - WINDEV E OS BANCOS DE DADOS
DICAS 2997 - WINDEV TUTORIAL 20 - PROJETO E ANALISE - CRIACAO
DICAS 2998 - WINDEV TUTORIAL 21 - PROJETO E ANALISE - ARQUIVOS DADOS CLIENTE - PARTE 2
DICAS 2999 - WINDEV TUTORIAL 22 - PROJETO E ANALISE - ARQUIVOS DADOS CRIACAO ARQUIVO PEDIDO - PARTE 3
DICAS 3000 - WINDEV TUTORIAL 23 - PROJETO E ANALISE - IMPORTANDO CVS-ARQUIVO TEXTO - PARTE 4
DICAS 3001 - WINDEV TUTORIAL 24 - PROJETO E ANALISE - IMPORTANDO ARQUIVO PRODUTO - PARTE 5
DICAS 3002 - WINDEV TUTORIAL 25 - PROJETO E ANALISE - LINK - PARTE 6
DICAS 3003 - WINDEV TUTORIAL 26 - RAD COMPLETO
DICAS 3004 - WINDEV TUTORIAL 27 - VISAO GERAL
DICAS 3005 - WINDEV TUTORIAL 28 - Adicionar e Modificar Janelas PRODUTOS - PARTE A
DICAS 3006 - WINDEV TUTORIAL 29 - Adicionar e Modificar Janelas PRODUTOS Formulario - PARTE B
DICAS 3007 - WINDEV TUTORIAL 30 - Adicionar e Modificar Janelas PRODUTOS ALINHAR CAMPOS - PARTE C




Nenhum comentário:

Postar um comentário

Teste

Teste
teste