We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ddsky/gamebrain-api-clients'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
GameResponseOffersInnerPriceTests.cs•2.44 KiB
/*
* GameBrain API
*
* GameBrain API
*
* The version of the OpenAPI document: 1.0.1
* Contact: mail@gamebrain.co
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using Xunit;
using System;
using System.Linq;
using System.IO;
using System.Collections.Generic;
using gamebrain.Model;
using gamebrain.Client;
using System.Reflection;
using Newtonsoft.Json;
namespace gamebrain.Test.Model
{
/// <summary>
/// Class for testing GameResponseOffersInnerPrice
/// </summary>
/// <remarks>
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
/// Please update the test case below to test the model.
/// </remarks>
public class GameResponseOffersInnerPriceTests : IDisposable
{
// TODO uncomment below to declare an instance variable for GameResponseOffersInnerPrice
//private GameResponseOffersInnerPrice instance;
public GameResponseOffersInnerPriceTests()
{
// TODO uncomment below to create an instance of GameResponseOffersInnerPrice
//instance = new GameResponseOffersInnerPrice();
}
public void Dispose()
{
// Cleanup when everything is done.
}
/// <summary>
/// Test an instance of GameResponseOffersInnerPrice
/// </summary>
[Fact]
public void GameResponseOffersInnerPriceInstanceTest()
{
// TODO uncomment below to test "IsType" GameResponseOffersInnerPrice
//Assert.IsType<GameResponseOffersInnerPrice>(instance);
}
/// <summary>
/// Test the property 'Currency'
/// </summary>
[Fact]
public void CurrencyTest()
{
// TODO unit test for the property 'Currency'
}
/// <summary>
/// Test the property 'DiscountPercent'
/// </summary>
[Fact]
public void DiscountPercentTest()
{
// TODO unit test for the property 'DiscountPercent'
}
/// <summary>
/// Test the property 'Value'
/// </summary>
[Fact]
public void ValueTest()
{
// TODO unit test for the property 'Value'
}
/// <summary>
/// Test the property 'Initial'
/// </summary>
[Fact]
public void InitialTest()
{
// TODO unit test for the property 'Initial'
}
}
}