mirror of https://github.com/apache/activemq.git
added back csharp m2 repo
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@412454 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3324233455
commit
fbdc95e6a3
|
@ -10,6 +10,14 @@
|
|||
<artifactId>activemq-dotnet</artifactId>
|
||||
<packaging>dotnet-library</packaging>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>maven-csharp</id>
|
||||
<name>maven-csharp</name>
|
||||
<url>http://maven-csharp.javaforge.com/repo</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<build>
|
||||
|
||||
<outputDirectory>target/dotnet-assembly</outputDirectory>
|
||||
|
|
|
@ -22,6 +22,6 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyCopyrightAttribute("Copyright (C) 2005-2006 Apache Software Foundation")]
|
||||
[assembly: AssemblyTrademarkAttribute("")]
|
||||
[assembly: AssemblyCultureAttribute("")]
|
||||
[assembly: AssemblyVersionAttribute("4.0.2266.0")]
|
||||
[assembly: AssemblyVersionAttribute("4.0.2281.0")]
|
||||
[assembly: AssemblyInformationalVersionAttribute("4.0")]
|
||||
|
||||
|
|
|
@ -18,9 +18,8 @@ using NUnit.Framework;
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
[TestFixture]
|
||||
namespace ActiveMQ.OpenWire {
|
||||
[ TestFixture ]
|
||||
public class BooleanStreamTest
|
||||
{
|
||||
protected int endOfStreamMarker = 0x12345678;
|
||||
|
@ -28,7 +27,7 @@ namespace ActiveMQ.OpenWire
|
|||
|
||||
public delegate bool GetBooleanValueDelegate(int index, int count);
|
||||
|
||||
[Test]
|
||||
[ Test ]
|
||||
public void TestBooleanMarshallingUsingAllTrue()
|
||||
{
|
||||
DoTestBooleanStream(numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAllTrue));
|
||||
|
@ -38,7 +37,7 @@ namespace ActiveMQ.OpenWire
|
|||
return true;
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ Test ]
|
||||
public void TestBooleanMarshallingUsingAllFalse()
|
||||
{
|
||||
DoTestBooleanStream(numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAllFalse));
|
||||
|
@ -48,20 +47,22 @@ namespace ActiveMQ.OpenWire
|
|||
return false;
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ Test ]
|
||||
public void TestBooleanMarshallingUsingAlternateTrueFalse()
|
||||
{
|
||||
DoTestBooleanStream(numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAlternateTrueFalse));
|
||||
DoTestBooleanStream(
|
||||
numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAlternateTrueFalse));
|
||||
}
|
||||
public bool GetBooleanValueAlternateTrueFalse(int index, int count)
|
||||
{
|
||||
return (index & 1) == 0;
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ Test ]
|
||||
public void TestBooleanMarshallingUsingAlternateFalseTrue()
|
||||
{
|
||||
DoTestBooleanStream(numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAlternateFalseTrue));
|
||||
DoTestBooleanStream(
|
||||
numberOfBytes, new GetBooleanValueDelegate(GetBooleanValueAlternateFalseTrue));
|
||||
}
|
||||
public bool GetBooleanValueAlternateFalseTrue(int index, int count)
|
||||
{
|
||||
|
@ -106,11 +107,13 @@ namespace ActiveMQ.OpenWire
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Assert.Fail("Failed to parse bool: " + i + " out of: " + count + " due to: " + e);
|
||||
Assert.Fail(
|
||||
"Failed to parse bool: " + i + " out of: " + count + " due to: " + e);
|
||||
}
|
||||
}
|
||||
int marker = dis.ReadInt32();
|
||||
Assert.AreEqual(endOfStreamMarker, marker, "did not match: "+endOfStreamMarker+" and "+marker);
|
||||
Assert.AreEqual(
|
||||
endOfStreamMarker, marker, "did not match: " + endOfStreamMarker + " and " + marker);
|
||||
|
||||
// lets try read and we should get an exception
|
||||
try
|
||||
|
@ -122,7 +125,5 @@ namespace ActiveMQ.OpenWire
|
|||
{
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -22,6 +22,6 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyCopyrightAttribute("Copyright (C) 2005-2006 Apache Software Foundation")]
|
||||
[assembly: AssemblyTrademarkAttribute("")]
|
||||
[assembly: AssemblyCultureAttribute("")]
|
||||
[assembly: AssemblyVersionAttribute("4.0.2266.0")]
|
||||
[assembly: AssemblyVersionAttribute("4.0.2281.0")]
|
||||
[assembly: AssemblyInformationalVersionAttribute("4.0")]
|
||||
|
||||
|
|
Loading…
Reference in New Issue