Currently, when I follow the XCTest naming guidelines and write test names like this:
func testBasicRendering() {
expect(snapshotView).toMatchSnapshot()
}
I get files named like this:
reference_testbasicrendering@3x.png
I would have expected the name to be reference_basicrendering, so the test prefix should be removed as it is part of any test method. It's redundant information.