-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Horusiath/nbench-tests
Post-fork update
- Loading branch information
Showing
187 changed files
with
3,887 additions
and
9,789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 11 additions & 2 deletions
13
...ManualSerializer/CustomBinaryFormatter.cs → ...ManualSerializer/CustomBinaryFormatter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 12 additions & 4 deletions
16
Wire.PerfTest/Properties/AssemblyInfo.cs → Hyperion.PerfTest/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="GuidArrayTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
class GuidArrayTest : TestBase<Guid[]> | ||
{ | ||
protected override Guid[] GetValue() | ||
{ | ||
var l = new List<Guid>(); | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
l.Add(Guid.NewGuid()); | ||
} | ||
return l.ToArray(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="GuidTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using System; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
class GuidTest : TestBase<Guid> | ||
{ | ||
protected override Guid GetValue() | ||
{ | ||
return Guid.NewGuid(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#region copyright | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="LargeStructTest.cs" company="Akka.NET Team"> | ||
// Copyright (C) 2015-2016 AsynkronIT <https://github.com/AsynkronIT> | ||
// Copyright (C) 2016-2016 Akka.NET Team <https://github.com/akkadotnet> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
#endregion | ||
|
||
using Hyperion.PerfTest.Types; | ||
|
||
namespace Hyperion.PerfTest.Tests | ||
{ | ||
internal class LargeStructTest : TestBase<LargeStruct> | ||
{ | ||
protected override LargeStruct GetValue() | ||
{ | ||
return LargeStruct.Create(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 12 additions & 6 deletions
18
...PerfTest/Tests/TypicalMessageArrayTest.cs → ...PerfTest/Tests/TypicalMessageArrayTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.