mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 18:31:53 +00:00
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
//
|
|
// MacintoshVideoTests.m
|
|
// Clock SignalTests
|
|
//
|
|
// Created by Thomas Harte on 09/07/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
#include <memory>
|
|
#include "../../../Machines/Apple/Macintosh/Video.hpp"
|
|
|
|
@interface MacintoshVideoTests : XCTestCase
|
|
@end
|
|
|
|
@implementation MacintoshVideoTests {
|
|
Apple::Macintosh::DeferredAudio _dummy_audio;
|
|
Apple::Macintosh::DriveSpeedAccumulator _dummy_drive_speed_accumulator;
|
|
std::unique_ptr<Apple::Macintosh::Video> _video;
|
|
uint16_t _ram[64*1024];
|
|
}
|
|
|
|
- (void)setUp {
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
_video.reset(new Apple::Macintosh::Video(_ram, _dummy_audio, _dummy_drive_speed_accumulator));
|
|
}
|
|
|
|
- (void)testPrediction {
|
|
int c = 5;
|
|
bool vsync = _video->vsync();
|
|
while(c--) {
|
|
int remaining_time_in_state = _video->get_next_sequence_point().as_int();
|
|
NSLog(@"Vsync %@ expected for %@ half-cycles", vsync ? @"on" : @"off", @(remaining_time_in_state));
|
|
while(remaining_time_in_state--) {
|
|
XCTAssertEqual(vsync, _video->vsync());
|
|
_video->run_for(HalfCycles(1));
|
|
|
|
if(remaining_time_in_state)
|
|
XCTAssertEqual(remaining_time_in_state, _video->get_next_sequence_point().as_int());
|
|
}
|
|
vsync ^= true;
|
|
}
|
|
}
|
|
|
|
@end
|