Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

アウトライン解析を表示して閉じる操作がテストで実行されるようにする #1671

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/unittests/test-winmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ TEST_P(WinMainTest, runEditorProcess)
strStartupMacro += L"Up();";
strStartupMacro += L"Right();";
strStartupMacro += L"Left();";
strStartupMacro += L"Outline(0);"; //アウトライン解析
strStartupMacro += L"ShowFunckey();"; //ShowFunckey 出す
strStartupMacro += L"ShowMiniMap();"; //ShowMiniMap 出す
strStartupMacro += L"ShowTab();"; //ShowTab 出す
Expand Down Expand Up @@ -336,6 +337,7 @@ TEST_P(WinMainTest, runEditorProcess)
strStartupMacro += L"SetFontSize(0, -1, 2);"; // 相対指定 - これ以上縮小できない
strStartupMacro += L"SetFontSize(100, 0, 2);"; // 元に戻す
// フォントサイズ設定のテスト(ここまで)
strStartupMacro += L"Outline(2);"; //アウトライン解析を閉じる
strStartupMacro += L"ExitAll();"; //NOTE: このコマンドにより、エディタプロセスは起動された直後に終了する。

// コマンドラインを組み立てる
Expand Down