mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-28 16:42:20 +00:00
38 lines
611 B
Objective-C
38 lines
611 B
Objective-C
//
|
|
// ImageLoadTest.m
|
|
// Lottie-Screenshot
|
|
//
|
|
// Created by Brandon Withrow on 2/24/17.
|
|
// Copyright © 2017 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
#import <Lottie/Lottie.h>
|
|
#import "LottieAnimationTestCase.h"
|
|
|
|
@interface ImageLoadTest : LottieAnimationTestCase
|
|
|
|
@end
|
|
|
|
@implementation ImageLoadTest
|
|
|
|
- (void)setUp {
|
|
self.animationName = @"Image";
|
|
[super setUp];
|
|
}
|
|
|
|
- (void)testImageLoadTest0 {
|
|
[self testAnimationProgress:0];
|
|
}
|
|
|
|
- (void)testImageLoadTest50 {
|
|
[self testAnimationProgress:0.5];
|
|
}
|
|
|
|
- (void)testImageLoadTest100 {
|
|
[self testAnimationProgress:1];
|
|
}
|
|
|
|
|
|
@end
|