/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.intel.mountwilson.as.client.hosttruststatus; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; /** * * @author dsmagadX */ public class HostTrustStatusClientTest { public HostTrustStatusClientTest() { } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { } /** * Test of getHostTrustStatus method, of class HostTrustStatusClient. */ // @Test /* public void testGetHostTrustStatus() { System.out.println("getHostTrustStatus"); String host = "10.1.71.103"; //XenSvr1"; HostTrustStatusClient instance = new HostTrustStatusClient(); HostTrustStatusOutput result = instance.getHostTrustStatus(host); assertEquals(0, result.bios); assertEquals(0, result.vmm); }*/ }