29 lines
718 B
C#
29 lines
718 B
C#
![]() |
/**
|
|||
|
* Copyright 2014-present, Facebook, Inc.
|
|||
|
* All rights reserved.
|
|||
|
*
|
|||
|
* This source code is licensed under the license found in the
|
|||
|
* LICENSE-examples file in the root directory of this source tree.
|
|||
|
*/
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
using Foundation;
|
|||
|
using UIKit;
|
|||
|
|
|||
|
namespace Facebook.Yoga.iOS.Tests
|
|||
|
{
|
|||
|
public class Application
|
|||
|
{
|
|||
|
// This is the main entry point of the application.
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
// if you want to use a different Application Delegate class from "UnitTestAppDelegate"
|
|||
|
// you can specify it here.
|
|||
|
UIApplication.Main(args, null, "UnitTestAppDelegate");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|