BridgeTests.Tests.TestCommunicationClass.GetJsonExampleString C# (CSharp) Method

GetJsonExampleString() private method

private GetJsonExampleString ( ) : string
return string
        private string GetJsonExampleString()
        {
            BeanDescription bean = BeanDescription.CreateInstance("classname");
            RemoteMethodCall remoteMC = RemoteMethodCall.CreateInstance(
                "methodName",
                new List<Object>()
                    {
                        "Test1"
                    },
                new Dictionary<String, String>(),
                new List<String>()
                    {
                        "Classes"
                    },
                new List<String>
                    {
                    "Real"
                    });
            MethodCallMessage message = MethodCallMessage.CreateInstance("principal", bean, remoteMC, "123", false, "TestCase");
            return marshaller.MarshallObject(message);
        }