mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-10132: FSTR is not working, due to fault in TransferService
- Initial tidying and fixing-up during investigation git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30491 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -185,7 +185,7 @@ public class TransferServiceImplTest extends BaseAlfrescoSpringTest
|
||||
*/
|
||||
public void testCreateTarget() throws Exception
|
||||
{
|
||||
String name = "name";
|
||||
String name = "Test Transfer Target " + GUID.generate();
|
||||
String title = "title";
|
||||
String description = "description";
|
||||
String endpointProtocol = "http";
|
||||
@@ -249,7 +249,7 @@ public class TransferServiceImplTest extends BaseAlfrescoSpringTest
|
||||
*/
|
||||
public void testCreateTargetSyntax2() throws Exception
|
||||
{
|
||||
String name = "nameSyntax2";
|
||||
String name = "Test Transfer Target " + GUID.generate();
|
||||
String title = "title";
|
||||
String description = "description";
|
||||
String endpointProtocol = "http";
|
||||
@@ -324,8 +324,8 @@ public class TransferServiceImplTest extends BaseAlfrescoSpringTest
|
||||
*/
|
||||
public void testGetTransferTargets() throws Exception
|
||||
{
|
||||
String nameA = "nameA";
|
||||
String nameB = "nameB";
|
||||
String nameA = "Test Transfer Target " + GUID.generate();
|
||||
String nameB = "Test Transfer Target " + GUID.generate();
|
||||
String title = "title";
|
||||
String description = "description";
|
||||
String endpointProtocol = "http";
|
||||
@@ -402,7 +402,7 @@ public class TransferServiceImplTest extends BaseAlfrescoSpringTest
|
||||
//TODO Test not complete - can't yet put targets in different groups
|
||||
public void testGetAllTransferTargetsByGroup() throws Exception
|
||||
{
|
||||
String getMe = "getMe";
|
||||
String getMe = "Test Transfer Target " + GUID.generate();
|
||||
String title = "title";
|
||||
String description = "description";
|
||||
String endpointProtocol = "http";
|
||||
@@ -439,7 +439,7 @@ public class TransferServiceImplTest extends BaseAlfrescoSpringTest
|
||||
*/
|
||||
public void testUpdateTransferTarget() throws Exception
|
||||
{
|
||||
String updateMe = "updateMe";
|
||||
String updateMe = "Test Transfer Target " + GUID.generate();
|
||||
String title = "title";
|
||||
String description = "description";
|
||||
String endpointProtocol = "http";
|
||||
|
Reference in New Issue
Block a user