Unittest unit test framework UI automation

Today, we will explain how to use unittest framework to realize UI automation in python. We won't repeat how to use webdriver API to operate web pages today. For missed partners, please stamp the link below~~ 1.unittest unit test framework Why use a unit test framework? The use of unit test framework can standardize the preparation of te ...

Posted by exa_bit on Wed, 02 Mar 2022 12:16:13 +0100

Detailed explanation of Assert in unit test - xUnit

Previous: Detailed unit test - xUnit brief introduction Assert evaluates the test results based on the return value of the code, the final state of the object, whether the event occurs, etc. The result of assert may be Pass or Fail. If all assets Pass, the whole test passes. If any assets fails, the result fails. How many assets should the ...

Posted by sysop on Fri, 25 Feb 2022 13:18:44 +0100

An article to understand unittest unit testing framework

For Python 2.1 and later versions, unittest is put into the python development package as a standard module. 01 use unittest to write test cases [at the end of the paper, a learning resource for automated testing is prepared for free sharing] Rules: import unittestTo create a test class, you must inherit unittest Testcase classCreate a test ...

Posted by datoshway on Thu, 24 Feb 2022 08:20:05 +0100

Interface automation framework (Pytest+request+Allure)

preface: Interface automation refers to the automation at the interface level of analog program. Because the interface is not easy to change and the maintenance cost is less, it is deeply loved by major companies. Interface automation includes two parts: functional interface automation test and concurrent interface automation test. This articl ...

Posted by AShain on Mon, 21 Feb 2022 08:02:18 +0100

For you who want to get started with unit testing

1, Why unit testing First, let's take a look at the standard software development process As can be seen from the figure, unit testing, as an important part of the development process, is actually an important part to ensure the robustness of the code. However, for various reasons, in daily development, we often don't pay attention to th ...

Posted by Gorf on Thu, 03 Feb 2022 19:51:01 +0100

Unit test React components

A characteristic of front-end development is that it will involve more user interfaces. When the development scale reaches a certain degree, it is almost doomed that its complexity will increase exponentially. Whether in the initial construction of the code or in the subsequent unavoidable reconstruction and bug correction process, it is often ...

Posted by dnzone on Mon, 31 Jan 2022 05:22:00 +0100

A test engineer walks into a bar

A test engineer walks into a bar and asks for a beer; A test engineer walks into a bar and asks for a cup of coffee; A test engineer walked into a bar and ordered 0.7 glasses of beer; A test engineer walks into a bar and asks for -1 beer; A test engineer walked into a bar and ordered 2 ^ 32 glasses of beer; A test engineer walked into ...

Posted by ephmynus on Sun, 30 Jan 2022 15:12:01 +0100

Unit Testing [50]

10.4 reuse code in test section   integration testing will soon become too large and lose its advantage in maintainability indicators. It's important to keep integration tests as short as possible, but don't let them couple with each other or affect readability. Even the shortest tests should not be interdependent. They should also retain ...

Posted by joecooper on Sat, 29 Jan 2022 02:53:57 +0100

Java smallholder cultivation record day 24

day24 Chapter I Junit unit test 1.1 what is unit testing? In computer programming, Unit Testing (English: Unit Testing), also known as module testing, is a test to verify the correctness of program modules (the smallest unit of software design). The program unit is the smallest testable part of the application. Simply put, it is to test whet ...

Posted by rich1983 on Fri, 28 Jan 2022 21:32:55 +0100

PowerMock integration unit test

catalogue 1, What is Mock? 2, Why use PowerMock? 3, Common notes and methods of PowerMock 4, How to use PowerMock for unit testing? 1, What is Mock? Mock is to create a mock object to simulate the behavior of some objects that are not easy to construct / obtain during the test. For example, if you need to call the B service, but the B se ...

Posted by grglaz on Tue, 25 Jan 2022 16:49:06 +0100