RPG: Code in Git, An Intro Guide for IBMi Developers

Git is a popular distributed version control system designed to handle everything from small to large projects with speed and efficiency. By maintaining your RPG code in Git, you can improve collaboration, version control, and maintainability of your applications on the IBMi platform. In this tutorial, we’ll walk you through the process of setting upContinue reading “RPG: Code in Git, An Intro Guide for IBMi Developers”

RPG: Unit Testing with IBMiUnit Library

The IBMiUnit library is a unit testing framework for RPG that enables you to write and execute unit tests on the IBMi platform easily. In this tutorial, we’ll walk you through using the IBMiUnit library to create and run unit tests in RPG, enhancing the reliability and maintainability of your applications. Prerequisites Before you begin,Continue reading “RPG: Unit Testing with IBMiUnit Library”

RPG: Writing Unit Test Procedures for Testing Other RPG Code

Overview of RPG Unit Testing Unit testing in RPG involves creating test procedures that test individual units or components of your code. These tests help to identify issues early in the development process and ensure that your code behaves as expected. Step 1: Create a Test Harness A test harness is an RPG program thatContinue reading “RPG: Writing Unit Test Procedures for Testing Other RPG Code”

RPG: Combining Multiple Modules into a Service Program

Learn how to create a service program with multiple modules in RPG and use the procedures from these modules in your RPG applications, promoting code reusability and maintainability. Combining Multiple Modules into a Service Program in RPG In RPG, you can create service programs with multiple modules, which enables you to build modular, reusable, andContinue reading “RPG: Combining Multiple Modules into a Service Program”