Renaming test classes to fit *Form scheme
This commit is contained in:
parent
727d9d5508
commit
c48ee0a295
@ -9,9 +9,9 @@ using TelegramBotBase.Form;
|
||||
|
||||
namespace TelegramBotBase.Example.Tests.Controls;
|
||||
|
||||
public class MultiToggleButtons : AutoCleanForm
|
||||
public class MultiToggleButtonForm : AutoCleanForm
|
||||
{
|
||||
public MultiToggleButtons()
|
||||
public MultiToggleButtonForm()
|
||||
{
|
||||
DeleteMode = EDeleteMode.OnLeavingForm;
|
||||
|
||||
@ -7,9 +7,9 @@ using TelegramBotBase.Form;
|
||||
|
||||
namespace TelegramBotBase.Example.Tests.Controls;
|
||||
|
||||
public class ToggleButtons : AutoCleanForm
|
||||
public class ToggleButtonForm : AutoCleanForm
|
||||
{
|
||||
public ToggleButtons()
|
||||
public ToggleButtonForm()
|
||||
{
|
||||
DeleteMode = EDeleteMode.OnLeavingForm;
|
||||
|
||||
@ -127,7 +127,7 @@ public class Menu : AutoCleanForm
|
||||
|
||||
case "togglebuttons":
|
||||
|
||||
var tb = new ToggleButtons();
|
||||
var tb = new ToggleButtonForm();
|
||||
|
||||
await NavigateTo(tb);
|
||||
|
||||
@ -135,7 +135,7 @@ public class Menu : AutoCleanForm
|
||||
|
||||
case "multitogglebuttons":
|
||||
|
||||
var mtb = new MultiToggleButtons();
|
||||
var mtb = new MultiToggleButtonForm();
|
||||
|
||||
await NavigateTo(mtb);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user