Sensible test

This commit is contained in:
Garry Newman 2016-10-07 11:57:50 +01:00
parent a203523824
commit 34d519cd7c

View File

@ -20,7 +20,7 @@ public void Init()
} }
[TestMethod] [TestMethod]
public void Init_10000() public void Init_50()
{ {
for ( int i = 0; i < 50; i++ ) for ( int i = 0; i < 50; i++ )
{ {
@ -89,10 +89,9 @@ public void Update()
{ {
using ( var client = new Facepunch.Steamworks.Client( 252490 ) ) using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
{ {
for( int i=0; i<32; i++ ) for( int i=0; i<1024; i++ )
{ {
client.Update(); client.Update();
System.Threading.Thread.Sleep( 10 );
} }
} }
} }