Ошибка юнит-теста iOS - «Ошибка копирования пакета юнит-теста в путь контейнера» - PullRequest
0 голосов
/ 17 марта 2019

У меня есть проект iOS с заданной по умолчанию модульной тестовой целью, созданной с использованием XCTestCase.Это называется gstreampTests.Юнит тесты прошли нормально.

Затем я добавил тестовый пример пользовательского интерфейса в gstreampTests.Тесты начали давать сбой с сообщением об ошибке ниже:

"Ошибка копирования пакета тестового модуля в путь к контейнеру / private / var / mobile / Containers / Data / Application / 617998A4-EEF4-433B-97C1-DE6AA8F90196 для приложенияgstreamp "

Юнит-тест

#import <XCTest/XCTest.h>

@interface gstreampTests : XCTestCase

@end

@implementation gstreampTests

- (void)setUp {
    [super setUp];
    // Put setup code here. This method is called before the invocation of each test method in the class.
}

- (void)tearDown {
    // Put teardown code here. This method is called after the invocation of each test method in the class.
    [super tearDown];
}

- (void)testExample {
    // This is an example of a functional test case.
    // Use XCTAssert and related functions to verify your tests produce the correct results.

    NSInteger action1 = 20;
    NSInteger action2 = 20;

    XCTAssertEqual(action1, action2, "Action1 is not equal to Action2!");
}

- (void)testPerformanceExample {


    // This is an example of a performance test case.
    [self measureBlock:^{
        // Put the code you want to measure the time of here.
    }];
}

@end

Я удалил цель юнит-теста и добавил новую.Это не решило проблему.

Любая помощь приветствуется.

Спасибо, Крис

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...