DictionaryForumContacts

   English
Terms for subject Programming containing mock | all forms | exact matches only
EnglishRussian
be mockedполучать имитированную реализацию (англ. термин взят из кн.: Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
be mocked for testingполучить имитированную реализацию в целях тестирования (англ. термин взят из кн.: Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
behavior of mock objectsповедение имитируемых объектов (Alex_Odeychuk)
behavior of mocked objectsповедение имитируемых объектов (Alex_Odeychuk)
call the method on the mock objectвызвать метод имитирующего объекта (In NSubstitute, you directly call the method on the mock object and then chain the Returns method to specify the return value. Alex_Odeychuk)
creation of a mock-up of an applicationсоздание эскиза приложения (ssn)
dynamic mockдинамический макетный объект (Any methods or properties which are called by your tests for which you have not provided an implementation will return the default value for the data type of the return value. In other words, you'll get back a 0 for number types, false for booleans and a null for any object types. Alex_Odeychuk)
get the mock instance for the actual dependenciesполучить экземпляры зависимостей с имитированной реализацией (англ. термин взят из кн.: Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
initialization of mocksинициализация имитирующих объектов (Alex_Odeychuk)
Mock APIsметоды, получившие имитированную реализацию (русс. термин "имитированная реализация" взят для перевода из кн.: Шефер К., Хо К., Харроп Р. Spring 4 для профессионалов; англ. термин взят из кн.: Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
mock behaviorповедение имитирующего объекта (Поведение имитирующего объекта представляет собой набор взаимосвязанных методов, направленных на реализацию определённой функциональности и организацию взаимодействия с вызывающим кодом. Через поведение проявляется роль и место объекта в программной системе и обеспечивается его взаимодействие с другими объектами. — The mock behavior is a set of interrelated methods designed to implement specific functionality and facilitate interaction with the calling code. The behavior defines the object's role and position within the software system, and orchestrates its interactions with other objects. Alex_Odeychuk)
mock behaviorповедение макетного объекта (Alex_Odeychuk)
mock classимитированный класс (из кн.: Шефер К., Хо К., Харроп Р. Spring 4 для профессионалов Alex_Odeychuk)
mock configurationконфигурация имитирующего объекта (Alex_Odeychuk)
mock implementationтестовая реализация (Alex_Odeychuk)
mock itemэлемент фиктивного набора данных (создаваемый в целях тестирования приложения Alex_Odeychuk)
mock methodимитирующий метод (Alex_Odeychuk)
mock methodметод имитирующего объекта (Alex_Odeychuk)
mock objectмакетный объект (Alex_Odeychuk)
mock objectфиктивный объект (ssn)
mock objectподставной объект (ssn)
mock objectподдельный объект (ssn)
mock object: A fake object that asserts conditions internallyимитирующий объект: фиктивный объект, который подтверждает условия внутренним образом (см. Working Effectively with Legacy Code by Michael C. Feathers 2004 ssn)
mock objectsимитирующие объекты (ssn)
mock object's behaviorповедение имитирующего объекта (Поведение имитирующего объекта представляет собой набор взаимосвязанных методов, направленных на реализацию определённой функциональности и организацию взаимодействия с вызывающим кодом. Через поведение проявляется роль и место объекта в программной системе и обеспечивается его взаимодействие с другими объектами. — The mock object's behavior is a set of interrelated methods aimed at implementing certain functionality and facilitating interactions with the calling code. The behavior defines the object's role and position within the software system, and orchestrates its interactions with other objects. Alex_Odeychuk)
mock setupнастройка имитирующего объекта (Missing a mock setup can lead to null reference exceptions or unexpected behavior. — Отсутствие настройки имитирующего объекта может привести к исключениям пустой ссылки или к неожиданному поведению. Alex_Odeychuk)
mock the dependenciesпредоставить зависимостям имитированную реализацию (англ. термин взят из кн.: Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
mock-upпрототип (ssn)
mock-upэскиз (напр., приложения ssn)
mock-upэкспериментальная модель (ssn)
mock-up of an applicationэскиз приложения (ssn)
mocked instance of the dependent objectимитирующий экземпляр объекта-зависимости (Shukla A. Building Web Apps with Spring 5 and Angular Alex_Odeychuk)
mocked methodметод имитируемого объекта (Alex_Odeychuk)
mocked methodимитируемый метод (Alex_Odeychuk)
mocked serviceимитируемая зависимость (dev.to Alex_Odeychuk)
partial mockчастичный макетный объект (A partial mock will use the underlying object's implementation if you don't provide an alternate implementation. So if you're only wanting to replace some of the functionality or properties, and keep the rest, you'll want to use this. Alex_Odeychuk)
property on a mocked objectсвойство имитируемого объекта (Alex_Odeychuk)
Prototyping — The creation of a mock-up of an applicationПрототипирование – создание эскиза приложения (см. "Quality Software Project Management" by Robert T. Futrell, Donald F. Shafer, Linda I. Safer 2002 ssn)
Prototyping — The creation of a mock-up of an applicationПрототипирование – создание эскиза приложения (см. "Quality Software Project Management" by Robert T. Futrell, Donald F. Shafer, Linda I. Safer 2002 ssn)
return value of the mocked methodвозвращаемое значение имитируемого метода (Alex_Odeychuk)
revert a mock object to its recording stateвернуть имитирующий объект в состояние записи (Alex_Odeychuk)
set up the mock behaviorнастроить поведение имитирующего объекта (Alex_Odeychuk)
set up the mock behaviorнастроить имитируемое поведение (Alex_Odeychuk)
spies, mocks, stubs, fakesобъекты-соглядатаи, имитирующие объекты, объекты-заглушки, фиктивные объекты (Alex_Odeychuk)
strict mockстрогий макетный объект (A strict mock requires you to provide alternate implementations for each method or property that is used on the mock. If any methods or properties are used which you have not provided implementations for, an exception will be thrown. Alex_Odeychuk)
switch a mock object to replay modeпереключить имитирующий объект в режим воспроизведения (Alex_Odeychuk)
the behavior of mock objectsповедение объектов с имитированной реализацией (Alex_Odeychuk)
user interface mock-upпрототип пользовательского интерфейса (ssn)
verification of mock method callsпроверка вызова методов имитирующего объекта (Alex_Odeychuk)
verify interactions with mocked objectsпроверить взаимодействие с имитирующими объектами (Alex_Odeychuk)