mantidproject / mantid

Main repository for Mantid code
https://www.mantidproject.org
GNU General Public License v3.0
210 stars 121 forks source link

Manual Testing Workspace Groups #34950

Closed sf1919 closed 1 year ago

sf1919 commented 1 year ago

You have been assigned manual testing. The hope is to catch as many problems with the code before release, so it would be great if you can take some time to give a serious test to your assigned area. Thank you!!

The general guide to manual testing:

Specific Notes:

RichardWaiteSTFC commented 1 year ago

No new issues - could reproduce the issues found last manual testing

  1. Can add a workspace group to a workspace group using a script #34366
  2. Can add the same workspace to two or more groups
    
    ws1 = CreateSampleWorkspace()
    ws2 = CreateSampleWorkspace()
    ws3 = CreateSampleWorkspace()

wsGroup1 = GroupWorkspaces("ws1,ws2") wsGroup2 = GroupWorkspaces("ws1,ws3")


Point (2) might not be an issue, it seems not to copy the workspace and deleting the workspace deletes it from both etc.
RichardWaiteSTFC commented 1 year ago

Also maybe this could be turned into a doc-test?