From 974f8147702d8cd6c48c541e7f3529a725033e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D1=80=D1=8F=D0=BA=D0=B8=D0=BD=20=D0=90=D0=BB?= =?UTF-8?q?=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?= Date: Fri, 27 Jan 2023 23:39:49 +0300 Subject: [PATCH] #16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Починил работу в обычном приложении --- .../OrdinaryApplicationModule.bsl | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 exts/yaxunit/src/Configuration/OrdinaryApplicationModule.bsl diff --git a/exts/yaxunit/src/Configuration/OrdinaryApplicationModule.bsl b/exts/yaxunit/src/Configuration/OrdinaryApplicationModule.bsl new file mode 100644 index 00000000..625cab15 --- /dev/null +++ b/exts/yaxunit/src/Configuration/OrdinaryApplicationModule.bsl @@ -0,0 +1,42 @@ +//©///////////////////////////////////////////////////////////////////////////©// +// +// Copyright 2021-2022 BIA-Technologies Limited Liability Company +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//©///////////////////////////////////////////////////////////////////////////©// + +#Область ОписаниеПеременных + +Перем ЮТДанныеКонтекста Экспорт; + +#КонецОбласти + +///////////////////////////////////////////////////////////////////////////////// +// Обработчики событий модуля +///////////////////////////////////////////////////////////////////////////////// +#Область ОбработчикиСобытий + +///////////////////////////////////////////////////////////////////////////////// +// ОТКРЫТИЕ ПРИЛОЖЕНИЯ +///////////////////////////////////////////////////////////////////////////////// + +// Используется для перехвата управления расширением после отработки запуска приложения +&После("ПриНачалеРаботыСистемы") +Процедура ЮТПриНачалеРаботыСистемы() + + ЮТИсполнитель.ВыполнитьМодульноеТестирование(); + +КонецПроцедуры + +#КонецОбласти