mirror of https://github.com/apache/activemq.git
Missed a few in the refactor
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@384453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c40f989966
commit
8bbca4d6cb
|
@ -206,15 +206,15 @@
|
|||
<Compile Include="src\test\csharp\ActiveMQ\OpenWire\EndianTest.cs"/>
|
||||
<Compile Include="src\test\csharp\ActiveMQ\TestMain.cs"/>
|
||||
<Compile Include="src\test\csharp\CommonAssemblyInfo.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\AsyncConsumeTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\BadConsumeTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\BytesMessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\ConsumerTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\JMSPropertyTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\JMSTestSupport.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\MapMessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\MessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\TextMessage.cs"/>
|
||||
<Compile Include="src\test\csharp\JMS\TransactionTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\AsyncConsumeTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\BadConsumeTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\BytesMessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\ConsumerTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\JMSPropertyTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\JMSTestSupport.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\MapMessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\MessageTest.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\TextMessage.cs"/>
|
||||
<Compile Include="src\test\csharp\NMS\TransactionTest.cs"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
@ -20,7 +20,6 @@ using System.Collections;
|
|||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.Transport
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.Transport
|
||||
|
|
|
@ -20,7 +20,6 @@ using System.Collections;
|
|||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
|
||||
namespace ActiveMQ.Transport
|
||||
{
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.Transport
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using JMS;
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
|
|
@ -20,7 +20,8 @@ using System;
|
|||
using System.Threading;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[TestFixture]
|
||||
public class AsyncConsumeTest : JMSTestSupport
|
||||
|
@ -87,3 +88,4 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
|
|
@ -19,7 +19,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[TestFixture]
|
||||
public class BadConsumeTest : JMSTestSupport
|
||||
|
@ -54,3 +55,4 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
|
|
@ -19,7 +19,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public class BytesMessageTest : JMSTestSupport
|
||||
|
@ -66,3 +67,4 @@ namespace JMS
|
|||
}
|
||||
|
||||
|
||||
|
|
@ -18,7 +18,8 @@ using NMS;
|
|||
using NUnit.Framework;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[TestFixture]
|
||||
public class ConsumerTest : JMSTestSupport
|
||||
|
@ -62,7 +63,7 @@ namespace JMS
|
|||
message.Properties["color"] = "red";
|
||||
producer.Send(message);
|
||||
|
||||
IMessage m = consumer.Receive(receiveTimeout );
|
||||
IMessage m = consumer.Receive(receiveTimeout);
|
||||
Assert.IsNotNull(m);
|
||||
Assert.AreEqual("1st", ((ITextMessage)m).Text);
|
||||
|
||||
|
@ -89,3 +90,4 @@ namespace JMS
|
|||
}
|
||||
|
||||
|
||||
|
|
@ -20,7 +20,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public class JMSPropertyTest : JMSTestSupport
|
||||
|
@ -136,3 +137,4 @@ namespace JMS
|
|||
}
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,8 @@ using System;
|
|||
/// <summary>
|
||||
/// useful base class for test cases
|
||||
/// </summary>
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public abstract class JMSTestSupport
|
||||
|
@ -88,7 +89,7 @@ namespace JMS
|
|||
// Should only need to wait for first message to arrive due to the way
|
||||
// prefetching works.
|
||||
IMessage msg = consumer.Receive(receiveTimeout);
|
||||
while (msg!= null)
|
||||
while (msg != null)
|
||||
{
|
||||
msg = consumer.ReceiveNoWait();
|
||||
}
|
||||
|
@ -112,7 +113,8 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
protected virtual IConnectionFactory CreateConnectionFactory() {
|
||||
protected virtual IConnectionFactory CreateConnectionFactory()
|
||||
{
|
||||
return new ActiveMQ.ConnectionFactory(new Uri("tcp://localhost:61616"));
|
||||
}
|
||||
|
||||
|
@ -157,7 +159,8 @@ namespace JMS
|
|||
public IDestination Destination
|
||||
{
|
||||
get {
|
||||
if( destination == null ) {
|
||||
if (destination == null)
|
||||
{
|
||||
destination = CreateDestination();
|
||||
Assert.IsNotNull(destination, "No destination available!");
|
||||
Console.WriteLine("Using destination: " + destination);
|
||||
|
@ -172,3 +175,4 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
|
|
@ -19,7 +19,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public class MapMessageTest : JMSTestSupport
|
||||
|
@ -122,3 +123,4 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
|
|
@ -14,12 +14,12 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using JMS;
|
||||
using NMS;
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
|
||||
namespace tests
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public class MessageTest : JMSTestSupport
|
||||
|
@ -119,3 +119,4 @@ namespace tests
|
|||
|
||||
}
|
||||
}
|
||||
|
|
@ -19,7 +19,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[ TestFixture ]
|
||||
public class TextMessage : JMSTestSupport
|
||||
|
@ -62,3 +63,4 @@ namespace JMS
|
|||
}
|
||||
|
||||
|
||||
|
|
@ -19,7 +19,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace JMS
|
||||
|
||||
namespace NMS
|
||||
{
|
||||
[TestFixture]
|
||||
public class TransactionTest : JMSTestSupport
|
||||
|
@ -249,3 +250,4 @@ namespace JMS
|
|||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue