Alok Sinha
Alok Sinha
@niksawtschuk this is `Unit test(XCTest)` .
``` class testGtxiLibTests: XCTestCase { private var sut: ViewController! override static func setUp() { super.setUp() var checkArr: [GTXChecking] = [] guard let checkFirst = GTXChecksCollection.checkForAXLabelPresent() else { fatalError() } guard...
Yes view controller appears on `simulator` on running the tests and `tests are passed`. 😔 If a sample app is provided with the framework with explanation how to implement` unit...
@selin194 `override class func setUp()` is already implemented in my code see [here](https://github.com/google/GTXiLib/issues/12#issuecomment-526812379)
@selin194 you have frame of element which might help you.
@selin194 Hi ..I have integrated `GtxiLib` in `UnitTests` but I also need to integrate `GtxiLib` for my `UITests` as you have already integrated for UITests ..could you please explain how...