mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 14:45:51 +03:00
74 lines
2.0 KiB
C#
74 lines
2.0 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace Facepunch.Steamworks.Test
|
|
{
|
|
[TestClass]
|
|
[DeploymentItem( Config.LibraryName + ".dll" )]
|
|
[DeploymentItem( "steam_appid.txt" )]
|
|
public class Stats
|
|
{
|
|
[TestMethod]
|
|
public void UpdateStats()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
client.Stats.UpdateStats();
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void UpdateSUpdateGlobalStatstats()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
client.Stats.UpdateGlobalStats( 1 );
|
|
client.Stats.UpdateGlobalStats( 3 );
|
|
client.Stats.UpdateGlobalStats( 7 );
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GetClientFloat()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
var v = client.Stats.GetFloat( "deaths" );
|
|
Console.WriteLine( v );
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GetClientInt()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
var v = client.Stats.GetInt( "deaths" );
|
|
Console.WriteLine( v );
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GetGlobalFloat()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
var v = client.Stats.GetGlobalFloat( "deaths" );
|
|
Console.WriteLine( v );
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void GetGlobalInt()
|
|
{
|
|
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
|
|
{
|
|
var v = client.Stats.GetGlobalInt( "deaths" );
|
|
Console.WriteLine( v );
|
|
}
|
|
}
|
|
}
|
|
}
|