You can get the pear module by saying pear install http://phptal.org/latest.tar.gz
and upgrade by saying pear upgrade http://phptal.org/latest.tar.gz
on the command line.
Enable users to create and manage their own 'groups'. Each group can have subscribers, and maintains a group home page where subscribers communicate amongst themselves.
Inline module allows users to display uploaded files and images inline, i.e. place links to files into a content using a simple [inline:filename.jpg] tag. The effect is a link to the file or the display of an image, depending on the file type.
Inline allows users to place an uploaded image or a file attachment anywhere in the content. During creation of a content, a user can simply enter the number or filename of the attachment that should be displayed inline. After submitting the content, the number is automatically converted to the corresponding filename.
The SimpleTest D8/D9 branch is a copy from the D8 SimpleTest module from Drupal core. SimpleTest was removed from Drupal core in favour of using PHPUnit for its testing needs. See #3110862: Remove simpletest module from core
Testing should be done using PHPUnit. Any remaining SimpleTests you have should be converted to PHPUnit. This module is available for people who have not had the opportunity to convert their tests yet and for those that would like a UI to run their tests.
Getting you module ready for D9
If you have SimpleTests in your module and you don't have the resources to update them for Drupal 9, you should follow the steps in the change record to make sure you can run your SimpleTests on DrupalCI with Drupal 9.
SimpleTest 7.x-2.x
The 7.x branch was moved to Drupal core.
The branch will contain an up-to-date fork of the Drupal 7 SimpleTest module that will allow for work to continue during the Drupal 7 cylce. An external git repository is being used in order to facility easy merges with Drupal 7 core. Drupal.org CVS will always have the lastest development copy for use. Please see the CHANGELOG for a listing or changes made.
Take a look at Switcheroo so you can switch back and forth between core SimpleTest and SimpleTest 2.x.
Requirements
The php-curl library is required for SimpleTest to function.