Category: Making your own Views

  • Custom Fonts using Support Library

    One of the most exciting announcements by Google in I/O 17 was providing support for custom fonts. Not as an asset but fonts can now be used as a resource. An application can also use one of many Google Fonts dynamically. As fonts are now supported natively, the same font can be used by different […]

  • Frisby.js

    Frisby is a REST API testing framework built on node.js and Jasmine. Install Frsiby.js Install Frisby.js with NPM locally. Execute the following command in your project folder. sudo npm install frisby Write Tests Frisby tests start with frisby.create(‘Test Title’), where Test Title is a description for this test. The tests are then followed by one […]

  • Mochajs

    Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases. Some of the features of mocha are as follow: simple async support, including promises. async test […]

  • Postman

    Postman is mostly used app for developing and testing API .Postman is a free app which is available for MacOS,Windows,Linux and Chrome app.It is used to you to create, save, send HTTP requests and test the response data.It helps to automate the process of making API requests and testing API responses.There are various features which […]

  • Create a GraphQL Schema and Resolver for Querying

    In this blog, I will discuss about GraphQL, it’s schema creation, how to use resolvers and how to use query by passing arguments. Lets first understand what is GraphQL.  GraphQL is a query language for your API and a server-side runtime for executing queries by using a type system you define for your data. GraphQL isn’t […]

  • Integration Testing

    Testing of combined modules of an application to determine whether they are functionally working correctly. The ‘parts’ can be code modules, individual applications, client and server applications on a network, etc. Types of Integration Testing: 1. Big Bang: In this approach, all or most of the developed modules are coupled together to form a complete […]

  • Making your own Views

    Preface Working with Checkbox and ListView can be the real pain. It was on 14 November 2016, when an issue in one of my GitHub repositories made it clear. Thanks to him I have a picture to show it. The problem with the checkbox can be seen in the screenshot above. Sometimes performing clicks on […]