class BokProgram { public static void main(String[] args) { Bok nyBok = new Bok("Ola Nordmann", "Boka om Norge", 10000); Bokhylle bokhylle = new Bokhylle(); bokhylle.settInn(nyBok); assert nyBok.hentForfatter() == "Ola Nordmann" : "Feil svar, forventet" + "Ola Nordmann, men fikk" + nyBok.hentForfatter(); System.out.println("Ingen feil oppdaget"); } }