CASA/c_micasad/test/verbs/TestOpenSecretStore.cs

63 lines
840 B
C#
Raw Normal View History

#if DEBUG
using System;
using System.Text;
using System.Collections;
//using System.InvalidOperationException;
using NUnit.Framework;
using sscs.common;
using sscs.cache;
using sscs.verbs;
namespace sscs.verbs
{
[TestFixture]
public class TestOpenSecretStore
{
[SetUp]
public void Init()
{
}
/*
[Test]
[ExpectedException(typeof(InvalidOperationException))]
public void TestNullVerb()
{
SSVerb verb = new OpenSecretStore();
verb.processRequest(UserId);
}
*/
// TBD: Need to construct the input buf and output buf and call the processRequest()
//As of now all internal functions are tested and the cachelib test code
// also indirectly tests this function.
}
}
#endif