Embedded Tools | Common Static Analysis Tools for Embedded Development

Embedded Tools | Common Static Analysis Tools for Embedded Development

Follow+Star Public Account Number, don’t miss out on exciting content Author | strongerHuang WeChat Public Account | Embedded Column When writing code, do you use static analysis tools to analyze your code?Many people may not have performed static analysis on their code, so today I will recommend several static analysis tools. About Static Analysis Tools … Read more

Common Linux Commands for Software Testing

Common Linux Commands for Software Testing

1. Difference Between Commands and Command Lines 1. Command Line: The Linux terminal (Terminal), a command prompt page, operates the system in pure “character” form, allowing various character-based commands to issue operational instructions to the system. 2. Command: A Linux program, where a command is essentially a program. Commands do not have a graphical interface … Read more

2025 Intermediate Embedded System Designer – Key Exam Points

2025 Intermediate Embedded System Designer - Key Exam Points

The 2025 software examination is approaching. No one supports my ambition, I will rise from the mud to the wall!According to historical data (source: Xisai Network), the “Intermediate Embedded System Designer” (hereinafter referred to as “Intermediate Embedded”) is not a popular subject in the software examination, with relatively moderate competition, and the difficulty of obtaining … Read more

Implementing Automated Testing with Python Selenium

Implementing Automated Testing with Python Selenium

Let’s first talk about automated testing! With the rapid development of the internet, if we still rely on manual testing of software functionalities one by one, it would be exhausting, right? Python Selenium provides us with an excellent solution for automated testing! Why is it said that implementing automated testing with Python Selenium is so … Read more

Allwinner T3/T3-C Power Intelligent Measurement Device Operating System Certified by Authoritative Evaluation!

Allwinner T3/T3-C Power Intelligent Measurement Device Operating System Certified by Authoritative Evaluation!

About the China Software Testing Center (Software and Integrated Circuit Promotion Center of the Ministry of Industry and Information Technology) With rich equipment and advanced software and hardware environment, software testing is mainly based on GB/T25000.51-2016 “System and Software Engineering – System and Software Quality Requirements and Evaluation (SQuaRE) Part 51: Quality Requirements and Testing … Read more

Discussion on Automotive ECU Testing

Discussion on Automotive ECU Testing

Recent work has required frequent interaction with testing, but I am not an expert in this niche area. Looking at thousands of test cases and a variety of testing devices and tools, along with the complex curves and charts presented by engineers, I found it quite overwhelming and difficult to understand, leading me to deep … Read more

Beginner’s Guide to API Testing – Basics of HTTP Protocol

1、URL:Uniform Resource Locator 2、Components of URL: <protocol>://[<user>:<password>]@<host>:<port>/<path>[:<params>]?<query>#<fragment> protocol:The protocol used for access, such as: http, https, ftp host:The hostname, which can be an IP address or a domain name, for example: 192.168.10.12, www.baidu.com. port:The port of the host when accessed. The default port for HTTP protocol is 80 and can be omitted. path:We can locate … Read more

Learn Interface Testing from Scratch – HTTP Message Structure

Learn Interface Testing from Scratch - HTTP Message Structure

1. HTTP Request/Response Message 1. HTTP Communication Process: The client sends a request to the server, and the server returns a response to the client. 2. Message: The message: Information exchanged between the HTTP protocol client and server. It is divided into message header and message body. Request message: The request information submitted by the … Read more

Understanding Data-Driven and Keyword-Driven Approaches in Automation Testing

Understanding Data-Driven and Keyword-Driven Approaches in Automation Testing

Pinch face to ask for attention~ Quick, follow this public account Let’s learn together Tips: “When learning testing, choose an institution, and it’s important to have a trial class!” Click the end of the article “Read the original” for more information! When first encountering automation testing, I didn’t fully understand data-driven and keyword-driven approaches, thinking … Read more

Summary of C++ Interview Knowledge Points

Summary of C++ Interview Knowledge Points

Basic Concepts of Program Design 1、int i=1; void main(){ inti=i; //i is an undefined value } 2、Type Conversion C++ defines a set of standard conversions between built-in type objects: If one operand’s type is long double, the other operand will be converted to long double If neither is long double, if one is double, the … Read more