2019-06-27 12:33:47 +02:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2019-06-27 12:33:47 +02:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
2019-08-30 09:55:26 +02:00
|
|
|
|
using SafeExamBrowser.Lockdown.Contracts;
|
2019-06-27 12:33:47 +02:00
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Lockdown.UnitTests
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
internal class FeatureConfigurationStub : IFeatureConfiguration
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
public Guid GroupId { get; set; }
|
|
|
|
|
|
|
|
|
|
public FeatureConfigurationStub()
|
|
|
|
|
{
|
|
|
|
|
Id = Guid.NewGuid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DisableFeature()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool EnableFeature()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 12:28:42 +02:00
|
|
|
|
public FeatureConfigurationStatus GetStatus()
|
2019-07-02 10:35:40 +02:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 12:28:42 +02:00
|
|
|
|
public void Initialize()
|
2019-06-27 12:33:47 +02:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-19 10:07:45 +02:00
|
|
|
|
public bool Reset()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 12:33:47 +02:00
|
|
|
|
public bool Restore()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|