Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

362 total results found

Toaster -- project B -- MG2040VT25

Advanced Assembly Technologies Old projects (2017-2024)

  

Template

Advanced Assembly Technologies Opposition reports

Template for opposition report -- individual

Implementation of a Servo System in TiaPortal (Siemens)

Mechatronic Actuators Student seminars

 

Mapping Industry 4.0

Advanced Assembly Technologies Digitalisation of manufacturing

  

Industrial transformation and assembly technology

Advanced Assembly Technologies Digitalisation of manufacturing

  

Comparison of hydraulic, pneumatic and electric actuators

Mechatronic Actuators Student seminars

  

Method description

Software Testing - Practical Issues Domain equivalence classes

Function Domain - Different Programming Languages

Software Testing - Practical Issues Domain equivalence classes

Equivalence classes

Software Testing - Practical Issues Domain equivalence classes

[here description of a valid eq. classes] [example 1] Show the equivalence classes for the function (Java language) boolean isEven(Integer number) [example 2] Show the equivalence classes for the function (SQL language) CREATE FUNCTION isEven(integer x) ...

Incorrect equivalence class division

Software Testing - Practical Issues Domain equivalence classes

[write a content here]   [Example 1] Perform equivalence partition analysis of the following function (Java language): public static double abs(double number); Explain what mistakes can be made if one does not know the binary notation of floating-point nu...

Valid and invalid equivalence classes

Software Testing - Practical Issues Domain equivalence classes

Add content and analyze the following example: CREATE FUNCTION isEven(integer x) RETURNS boolean;  

Test case creation procedure

Software Testing - Practical Issues Domain equivalence classes

Section 8.1.4 from the Textbook (without the example).

AI Chat Boots and equivalence classes

Software Testing - Practical Issues Domain equivalence classes

[Example 1] Present the prompt for ChatGPT and MS Copilot to solve the following problem: What is the input domain and the output domain of the following function (PHP language): function f($x) { \$y = \$x; } // there is no return statement [Example 2] ...

Basic definitions

Software Testing - Practical Issues Introduction

[The Textbook, page 89] test condition coverage item test case coverage, test coverage coverage analysis [example] Describe listing 2.2 from the Textbook using above definitions in the context of instruction coverage test and edge coverage test

Example test set construction

Software Testing - Practical Issues Domain equivalence classes

Description of the method

Software Testing - Practical Issues Statement testing

Instruction testing is the simplest of white-box testing techniques. However, it requires a precise definition of what constitutes an instruction. Instruction is an element of code written in a specific programming language that represents the smallest indivis...

Example - insert sort

Software Testing - Practical Issues Statement testing

Task 1 introduction from section 9.1.2 of the Textbook + source code void insertSort(int a[], int length) {     int i, j, value;     for (i = 1; i < length; ++i)s     {         value = a[i];         for (j = i - 1; j >= 0 && a[j] > value; --j)      ...

Test conditions and coverage items

Software Testing - Practical Issues Statement testing

    Task 2. Derivation of test conditions.  The test conditions are executable instructions. Note that our code one line of the program corresponds to a single instruction. All test conditions are for ET1. TC1: instruction number 2;  TC2: instruction numbe...

Test cases

Software Testing - Practical Issues Statement testing

Task 1 section [krok4] of the 9.1.2 Task 2 Source code of the test programm include <stdio.h> void insertSort(int a[], int length) {  int i, j, value;  for (i = 1; i < length; ++i) {    value = a[i];    for (j = i - 1; j >= 0 && a[j] > value; --j) {    ...

Statement coverage and unreachable code

Software Testing - Practical Issues Statement testing

In this section we will show unreachable errors using the C language. Unreachable statements are statements that will not be executed during the program execution.1. Return Statement Before Print Statement #include <stdio.h> int main()  {     printf("text_...