Developers » AS2 tagging » Apple » Content » MV Testing
MV Testing
- iOS
- watchOS
- tvOS
Get off to a good start
Once your tag is initialised, you can start tagging MV Testing enabling the measurement of different design and content combinations for a single application.
In the case of a Swift project, be sure to import the Tracker (or TrackerExtension if your target is an extension) module in your ViewController. In the case of an Objective-C project, be sure to import the headers Tracker-Swift.h or SmartTracker-Swift.h
Declare a Tracker variable in your ViewController.
import UIKit import Tracker class ViewController: UIViewController { let tracker: Tracker = ATInternet.sharedInstance.defaultTracker override func viewDidLoad() { super.viewDidLoad() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
#import "Tracker/Tracker-Swift.h" @interface ViewController () @property (nonatomic, strong) Tracker *tracker; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; self.tracker = [ATInternet sharedInstance].defaultTracker; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end
Tagging
The tracker exposes a MvTestings property offering an add method.
This method enables the addition of content tagging which can be sent at the desired moment (e.g. viewDidLoad, viewWillAppear …).
The add method sends back a MvTesting-type object. To send the defined information, you must manually call the Tracker’s dispatch method.
The method can take several different parameters:
- A character string composed of an identifier and the test name in ID[name_test] format.
- An integer representing the wave identifier (set of creations).
- A character string composed of an identifier and the name of the creation (combination of versions for each of the variables) in ID[name_creation] format.
The returned MvTesting object itself exposes a variables property offering an add method.
This method can take several different parameters:
- A character string composed of an identifier and the name of the variable concerned in ID[name_variable] format.
- A character string composed of an identifier and the name of the version concerned in ID[name_version] format.
For test and creation:
- if you only enter the ID, a name will be automatically generated,
- if you only enter the name, an ID will be automatically generated,
- if you enter an ID and a name, both will be saved.
Tagging examples
override func viewWillAppear(_ animated: Bool) { let mvt = tracker.mvTestings.add("1[My_first_Test]", waveId: 1, creation: "2[Version2_page_subscription]") _ = mvt.variables.add("1[Header]", version: "2[Grey]") _ = mvt.variables.add("2[Header]", version: "4[Black]") tracker.dispatch(); }
- (void)viewWillAppear:(BOOL)animated { MvTesting *mvt = [tracker.mvTestings add:@"1[My_first_Test]" waveId: 1 creation: @"2[Version2_page_subscription]"]; (void)[mvt.variables add:@"1[Header]" version:@"2[Grey]"]; (void)[mvt.variables add:@"2[Header]" version:@"4[Black]"]; [tracker dispatch]; }
MvTesting class
Properties
Name | Type | Default value | Description |
---|---|---|---|
test | String | Empty string | Gets or sets the full test name in ID[name_test] format |
waveId | Int | -1 | Gets or sets the wave identifier |
creation | String | Empty string | Gets or sets the full name of the creation in ID[name_creation] format |
variables | MvTestingVars | nil | Property allowing the addition of variables and versions |
MvTestingVar class
Properties
Name | Type | Default value | Description |
---|---|---|---|
variable | String | nil | Gets or sets the full name of the variable in ID format[name_variable] |
version | String | nil | Gets or sets the full name of the variable in ID[name_version] format |